This repository has been archived on 2024-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import Home from './src/Home';
|
|
|
|
function App() {
|
|
return (
|
|
<Home />
|
|
);
|
|
}
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|