Delete client directory

This commit is contained in:
Ben Elferink
2021-09-29 11:01:42 +03:00
committed by GitHub
parent 8efebf7a31
commit 1c17915ea2
7 changed files with 0 additions and 76 deletions

3
client/.gitignore vendored
View File

@@ -1,3 +0,0 @@
/node_modules
.DS_Store
.eslintcache

View File

@@ -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"
]
}
}

View File

@@ -1,12 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MERN_STACK</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root" />
</body>
</html>

View File

@@ -1,8 +0,0 @@
import React from 'react';
import './style/style.css';
function App() {
return <div>Hello World - React.js</div>;
}
export default App;

View File

@@ -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);

View File

@@ -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')
);

View File

@@ -1,9 +0,0 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}