Skip to content

Commit

Permalink
1st commit: project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
bertamatu committed Jul 2, 2020
1 parent 2fc6239 commit 95685d6
Show file tree
Hide file tree
Showing 28 changed files with 15 additions and 262 deletions.
Binary file removed public/favicon.ico
Binary file not shown.
5 changes: 1 addition & 4 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand All @@ -24,7 +21,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Frontend Hooks</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
23 changes: 2 additions & 21 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,6 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"name": "Frontend Party With Hooks",
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
"display": "standalone"
}
38 changes: 0 additions & 38 deletions src/App.css

This file was deleted.

26 changes: 0 additions & 26 deletions src/App.js

This file was deleted.

9 changes: 0 additions & 9 deletions src/App.test.js

This file was deleted.

Binary file added src/assets/images/surfing_wave.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added src/components/Navbar.js
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file added src/components/logo/DarkLogo.js
Empty file.
Empty file.
7 changes: 7 additions & 0 deletions src/containers/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function App() {
return <main></main>;
}

export default App;
16 changes: 5 additions & 11 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./containers/App";

ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
document.getElementById("root")
);

// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();
7 changes: 0 additions & 7 deletions src/logo.svg

This file was deleted.

Empty file added src/pages/admin.js
Empty file.
Empty file added src/pages/errorPage.js
Empty file.
Empty file added src/pages/home.js
Empty file.
Empty file added src/pages/login.js
Empty file.
141 changes: 0 additions & 141 deletions src/serviceWorker.js

This file was deleted.

Empty file added src/services/api.js
Empty file.
Empty file added src/services/auth.js
Empty file.
Empty file added src/services/storage.js
Empty file.
5 changes: 0 additions & 5 deletions src/setupTests.js

This file was deleted.

0 comments on commit 95685d6

Please sign in to comment.