feat: react template

This commit is contained in:
Lea Anthony
2019-06-16 17:13:40 +10:00
parent dcc3e5fa79
commit c8027f5b81
21 changed files with 529 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
import React from 'react';
import logo from './logo.png';
import './App.css';
import HelloWorld from './components/HelloWorld';
function App() {
return (
<div id="app" className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Welcome to your new <code>wails/react</code> project.
</p>
<HelloWorld />
</header>
</div>
);
}
export default App;