2022-02-16 22:48:22 +01:00
|
|
|
import { ChallengeFile } from "../../client/src/redux/prop-types";
|
|
|
|
|
|
|
|
export const challengeFiles: ChallengeFile[] = [
|
2021-08-12 19:48:28 +01:00
|
|
|
{
|
2022-02-16 22:48:22 +01:00
|
|
|
id: '1',
|
2020-06-01 18:28:22 +02:00
|
|
|
contents: 'some css',
|
|
|
|
error: null,
|
|
|
|
ext: 'css',
|
|
|
|
head: '',
|
2021-12-03 21:32:29 +01:00
|
|
|
history: ['styles.css'],
|
|
|
|
fileKey: 'stylescss',
|
|
|
|
name: 'styles',
|
2020-06-01 18:28:22 +02:00
|
|
|
seed: 'some css',
|
2022-02-16 22:48:22 +01:00
|
|
|
tail: '',
|
|
|
|
editableRegionBoundaries: [],
|
|
|
|
usesMultifileEditor: true,
|
2020-06-01 18:28:22 +02:00
|
|
|
},
|
2021-08-12 19:48:28 +01:00
|
|
|
{
|
2022-02-16 22:48:22 +01:00
|
|
|
id: '2',
|
2020-06-01 18:28:22 +02:00
|
|
|
contents: 'some html',
|
|
|
|
error: null,
|
|
|
|
ext: 'html',
|
|
|
|
head: '',
|
|
|
|
history: ['index.html'],
|
2021-08-12 19:48:28 +01:00
|
|
|
fileKey: 'indexhtml',
|
2020-06-01 18:28:22 +02:00
|
|
|
name: 'index',
|
|
|
|
seed: 'some html',
|
2022-02-16 22:48:22 +01:00
|
|
|
tail: '',
|
|
|
|
editableRegionBoundaries: [],
|
|
|
|
usesMultifileEditor: true,
|
2020-06-01 18:28:22 +02:00
|
|
|
},
|
2021-08-12 19:48:28 +01:00
|
|
|
{
|
2022-02-16 22:48:22 +01:00
|
|
|
id: '3',
|
2020-06-01 18:28:22 +02:00
|
|
|
contents: 'some js',
|
|
|
|
error: null,
|
|
|
|
ext: 'js',
|
|
|
|
head: '',
|
2021-12-03 21:32:29 +01:00
|
|
|
history: ['script.js'],
|
|
|
|
fileKey: 'scriptjs',
|
|
|
|
name: 'script',
|
2020-06-01 18:28:22 +02:00
|
|
|
seed: 'some js',
|
2022-02-16 22:48:22 +01:00
|
|
|
tail: '',
|
|
|
|
editableRegionBoundaries: [],
|
|
|
|
usesMultifileEditor: true,
|
2020-06-03 15:24:02 +02:00
|
|
|
},
|
2021-08-12 19:48:28 +01:00
|
|
|
{
|
2022-02-16 22:48:22 +01:00
|
|
|
id: '4',
|
2020-06-03 15:24:02 +02:00
|
|
|
contents: 'some jsx',
|
|
|
|
error: null,
|
|
|
|
ext: 'jsx',
|
|
|
|
head: '',
|
|
|
|
history: ['index.jsx'],
|
2021-08-12 19:48:28 +01:00
|
|
|
fileKey: 'indexjsx',
|
2020-06-03 15:24:02 +02:00
|
|
|
name: 'index',
|
|
|
|
seed: 'some jsx',
|
2022-02-16 22:48:22 +01:00
|
|
|
tail: '',
|
|
|
|
editableRegionBoundaries: [],
|
|
|
|
usesMultifileEditor: true,
|
2020-06-01 18:28:22 +02:00
|
|
|
}
|
2022-02-16 22:48:22 +01:00
|
|
|
]
|