Skip to content

Commit

Permalink
Cleanin' Out My Closet
Browse files Browse the repository at this point in the history
  • Loading branch information
Frodigo committed Dec 12, 2021
1 parent 89ac1a9 commit 8283941
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 131 deletions.
28 changes: 3 additions & 25 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,37 +7,15 @@
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
content="React router tutorial"
/>
<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/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.

Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
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>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<title>React Router example</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
38 changes: 0 additions & 38 deletions src/App.css

This file was deleted.

26 changes: 5 additions & 21 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,9 @@
import logo from './logo.svg';
import './App.css';
import React from "react";

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
export const App = () => {
return <>
<h1>Hello, hello, hello</h1>
</>
}

export default App;
8 changes: 0 additions & 8 deletions src/App.test.js

This file was deleted.

13 changes: 0 additions & 13 deletions src/index.css

This file was deleted.

15 changes: 3 additions & 12 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';

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

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
<App />,
document.getElementById('root')
);
1 change: 0 additions & 1 deletion src/logo.svg

This file was deleted.

13 changes: 0 additions & 13 deletions src/reportWebVitals.js

This file was deleted.

0 comments on commit 8283941

Please sign in to comment.