diff --git a/client/.gitignore b/client/.gitignore deleted file mode 100644 index b1b8d4b..0000000 --- a/client/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/node_modules -.DS_Store -.eslintcache \ No newline at end of file diff --git a/client/package.json b/client/package.json deleted file mode 100644 index cc315a1..0000000 --- a/client/package.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "client", - "version": "0.1.0", - "main": "index.js", - "scripts": { - "start": "react-scripts start" - }, - "author": "Ben Elferink", - "license": "ISC", - "dependencies": { - "axios": "^0.21.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", - "react-scripts": "^4.0.1" - }, - "browserslist": { - "production": [ - ">0.2%", - "not dead", - "not op_mini all" - ], - "development": [ - "last 1 chrome version", - "last 1 firefox version", - "last 1 safari version" - ] - } -} diff --git a/client/public/index.html b/client/public/index.html deleted file mode 100644 index 17aed91..0000000 --- a/client/public/index.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - MERN_STACK - - - -
- - diff --git a/client/src/App.js b/client/src/App.js deleted file mode 100644 index a9099a1..0000000 --- a/client/src/App.js +++ /dev/null @@ -1,8 +0,0 @@ -import React from 'react'; -import './style/style.css'; - -function App() { - return
Hello World - React.js
; -} - -export default App; diff --git a/client/src/api/index.js b/client/src/api/index.js deleted file mode 100644 index bb413bc..0000000 --- a/client/src/api/index.js +++ /dev/null @@ -1,6 +0,0 @@ -import axios from 'axios'; - -const url = 'http://localhost:8080/'; - -// export const getSomething = () => axios.get(url + 'path'); -// export const postSometing = (form) => axios.post(url + 'path', form); diff --git a/client/src/index.js b/client/src/index.js deleted file mode 100644 index c1f31c5..0000000 --- a/client/src/index.js +++ /dev/null @@ -1,10 +0,0 @@ -import React from 'react'; -import ReactDOM from 'react-dom'; -import App from './App'; - -ReactDOM.render( - - - , - document.getElementById('root') -); diff --git a/client/src/style/style.css b/client/src/style/style.css deleted file mode 100644 index 591a15b..0000000 --- a/client/src/style/style.css +++ /dev/null @@ -1,9 +0,0 @@ -* { - margin: 0; - padding: 0; - box-sizing: border-box; -} - -body { - font-family: Arial, Helvetica, sans-serif; -}