react-sidebar-v1-master nur als zip
This commit is contained in:
36
thirdParty/react-sidebar-v1-master/package.json
vendored
36
thirdParty/react-sidebar-v1-master/package.json
vendored
@ -1,36 +0,0 @@
|
||||
{
|
||||
"name": "react-sidebar-v1",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@testing-library/jest-dom": "^4.2.4",
|
||||
"@testing-library/react": "^9.3.2",
|
||||
"@testing-library/user-event": "^7.1.2",
|
||||
"react": "^16.13.1",
|
||||
"react-dom": "^16.13.1",
|
||||
"react-icons": "^3.10.0",
|
||||
"react-router-dom": "^5.2.0",
|
||||
"react-scripts": "3.4.3"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "react-scripts start",
|
||||
"build": "react-scripts build",
|
||||
"test": "react-scripts test",
|
||||
"eject": "react-scripts eject"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": "react-app"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
}
|
||||
18
thirdParty/react-sidebar-v1-master/src/App.css
vendored
18
thirdParty/react-sidebar-v1-master/src/App.css
vendored
@ -1,18 +0,0 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: 'Lato', sans-serif;
|
||||
}
|
||||
|
||||
.home,
|
||||
.reports,
|
||||
.products {
|
||||
display: flex;
|
||||
height: 90vh;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 3rem;
|
||||
}
|
||||
24
thirdParty/react-sidebar-v1-master/src/App.js
vendored
24
thirdParty/react-sidebar-v1-master/src/App.js
vendored
@ -1,24 +0,0 @@
|
||||
import React from 'react';
|
||||
import './App.css';
|
||||
import Navbar from './components/Navbar';
|
||||
import { BrowserRouter as Router, Switch, Route } from 'react-router-dom';
|
||||
import Home from './pages/Home';
|
||||
import Reports from './pages/Reports';
|
||||
import Products from './pages/Products';
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<>
|
||||
<Router>
|
||||
<Navbar />
|
||||
<Switch>
|
||||
<Route path='/' exact component={Home} />
|
||||
<Route path='/reports' component={Reports} />
|
||||
<Route path='/products' component={Products} />
|
||||
</Switch>
|
||||
</Router>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
10
thirdParty/react-sidebar-v1-master/src/index.js
vendored
10
thirdParty/react-sidebar-v1-master/src/index.js
vendored
@ -1,10 +0,0 @@
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import App from './App';
|
||||
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<App />
|
||||
</React.StrictMode>,
|
||||
document.getElementById('root')
|
||||
);
|
||||
Reference in New Issue
Block a user