karinayuen
commited on
Commit
•
1af3909
1
Parent(s):
79246ba
Create index.js
Browse files
index.js
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import React from 'react';
|
2 |
+
import ReactDOM from 'react-dom';
|
3 |
+
import ConstructiveAlignmentGenerator from './constructive-alignment-generator-basic';
|
4 |
+
|
5 |
+
ReactDOM.render(
|
6 |
+
<React.StrictMode>
|
7 |
+
<ConstructiveAlignmentGenerator />
|
8 |
+
</React.StrictMode>,
|
9 |
+
document.getElementById('root')
|
10 |
+
);
|