2021-06-30 19:19:59 +00:00
|
|
|
import React, {useState} from 'react';
|
2021-06-27 23:37:40 +00:00
|
|
|
import './App.css';
|
2022-04-22 20:28:05 +00:00
|
|
|
import Main from "./Main";
|
2021-06-27 23:37:40 +00:00
|
|
|
|
|
|
|
function App() {
|
2021-06-30 20:21:57 +00:00
|
|
|
|
2021-06-30 19:19:59 +00:00
|
|
|
return (
|
|
|
|
<div className="App">
|
2022-04-22 20:28:05 +00:00
|
|
|
<Main/>
|
2021-06-30 19:19:59 +00:00
|
|
|
</div>
|
|
|
|
);
|
2021-06-27 23:37:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|