boilerplate for tutorial + minirepl
This commit is contained in:
parent
bad6cf0ed7
commit
aa850918ad
6 changed files with 6012 additions and 2 deletions
14
repl/src/tutorial/index.html
Normal file
14
repl/src/tutorial/index.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<div id="root"></div>
|
||||
<script type="module">
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import * as React from 'react';
|
||||
import Tutorial from './tutorial.mdx';
|
||||
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<Tutorial />
|
||||
</React.StrictMode>,
|
||||
document.getElementById('root')
|
||||
);
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue