2020-04-30 10:01:46 +00:00
|
|
|
import React from 'react';
|
|
|
|
import './App.css';
|
2020-05-01 04:35:59 +00:00
|
|
|
import Layout from './containers/Layout'
|
|
|
|
import Qrcode from "./components/Qrcode";
|
2020-04-30 10:01:46 +00:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
|
|
|
<header className="App-header">
|
2020-05-01 04:35:59 +00:00
|
|
|
<Layout>
|
|
|
|
<Qrcode></Qrcode>
|
|
|
|
</Layout>
|
2020-04-30 10:01:46 +00:00
|
|
|
</header>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|