mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
365 B
18 lines
365 B
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './index.css';
|
|
import Header from './Header';
|
|
import InputPage from './InputPage';
|
|
import Footer from './Footer';
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<Header />
|
|
<div id="content">
|
|
<InputPage />
|
|
</div>
|
|
<Footer />
|
|
</React.StrictMode>,
|
|
document.getElementById('root')
|
|
);
|