change directory name

This commit is contained in:
haerong22
2021-07-14 21:57:27 +09:00
parent ef019cde62
commit 1259597ea4
93 changed files with 0 additions and 0 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'),
);