forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault-boilerplates.js
More file actions
42 lines (39 loc) · 855 Bytes
/
default-boilerplates.js
File metadata and controls
42 lines (39 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export const JS = {
id: 'js',
extension: '.js',
condition: '.jsx?$',
code: `
import React from 'react';
import { render } from 'react-dom';
export default function(module) {
const node = document.createElement('div');
document.body.appendChild(node);
render(React.createElement(module.default), node);
}
`,
};
export const HTML = {
id: 'html',
extension: '.html',
condition: '.html$',
code: `
export default function(module) {
document.body.innerHTML = module
}
`,
};
export const TS = {
id: 'ts',
extension: '.ts',
condition: '.tsx?$',
code: `
import * as React from 'react';
import { render } from 'react-dom';
export default function(module) {
const node = document.createElement('div');
document.body.appendChild(node);
render(React.createElement(module.default), node);
}
`,
};
export default [JS, HTML, TS];