react : post list

This commit is contained in:
kim
2021-02-04 03:00:45 +09:00
parent 2a18e19c2f
commit 0c76d9be82
17 changed files with 178 additions and 12 deletions

View File

@@ -0,0 +1,15 @@
import 'bootstrap/dist/css/bootstrap.min.css';
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import { BrowserRouter } from 'react-router-dom';
ReactDOM.render(
<React.StrictMode>
<BrowserRouter>
<App />
</BrowserRouter>
</React.StrictMode>,
document.getElementById('root'),
);