Implement wires module in React

New project to rewrite this in React.
This commit is contained in:
Daniel Sinn
2019-11-25 08:37:23 -05:00
parent ada083c346
commit 28a4d8c4f8
20 changed files with 13938 additions and 150 deletions
+17
View File
@@ -0,0 +1,17 @@
import React from 'react';
import './App.css';
import WiresModule from "./components/WiresModule";
function App() {
return (
<div className="App">
<header>
<h1>Keep Talking and Nobody Explodes</h1>
</header>
<WiresModule id='sectionWires' />
</div>
);
}
export default App;