Skip to content

Commit 8a28ed8

Browse files
committed
git init
1 parent 85344dc commit 8a28ed8

15 files changed

+17
-167
lines changed

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/index.html

+1-26
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,10 @@
99
name="description"
1010
content="Web site created using create-react-app"
1111
/>
12-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
13-
<!--
14-
manifest.json provides metadata used when your web app is installed on a
15-
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
16-
-->
17-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
18-
<!--
19-
Notice the use of %PUBLIC_URL% in the tags above.
20-
It will be replaced with the URL of the `public` folder during the build.
21-
Only files inside the `public` folder can be referenced from the HTML.
22-
23-
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
24-
work correctly both with client-side routing and a non-root public URL.
25-
Learn how to configure a non-root public URL by running `npm run build`.
26-
-->
27-
<title>React App</title>
12+
<title>React Redux Ts App</title>
2813
</head>
2914
<body>
3015
<noscript>You need to enable JavaScript to run this app.</noscript>
3116
<div id="root"></div>
32-
<!--
33-
This HTML file is a template.
34-
If you open it directly in the browser, you will see an empty page.
35-
36-
You can add webfonts, meta tags, or analytics to this file.
37-
The build step will place the bundled scripts into the <body> tag.
38-
39-
To begin the development, run `npm start` or `yarn start`.
40-
To create a production bundle, use `npm run build` or `yarn build`.
41-
-->
4217
</body>
4318
</html>

public/logo192.png

-5.22 KB
Binary file not shown.

public/logo512.png

-9.44 KB
Binary file not shown.

public/manifest.json

-25
This file was deleted.

public/robots.txt

-3
This file was deleted.

src/App.css

-38
This file was deleted.

src/App.test.tsx

-9
This file was deleted.

src/App.tsx

+7-22
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,11 @@
11
import React from 'react';
2-
import logo from './logo.svg';
3-
import './App.css';
42

5-
function App() {
6-
return (
7-
<div className="App">
8-
<header className="App-header">
9-
<img src={logo} className="App-logo" alt="logo" />
10-
<p>
11-
Edit <code>src/App.tsx</code> and save to reload.
12-
</p>
13-
<a
14-
className="App-link"
15-
href="https://reactjs.org"
16-
target="_blank"
17-
rel="noopener noreferrer"
18-
>
19-
Learn React
20-
</a>
21-
</header>
22-
</div>
23-
);
24-
}
3+
const App = () => {
4+
return (
5+
<div>
6+
7+
</div>
8+
);
9+
};
2510

2611
export default App;

src/index.css

-13
This file was deleted.

src/index.tsx

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom/client';
3-
import './index.css';
43
import App from './App';
5-
import reportWebVitals from './reportWebVitals';
4+
65

76
const root = ReactDOM.createRoot(
87
document.getElementById('root') as HTMLElement
98
);
109
root.render(
11-
<React.StrictMode>
10+
// <React.StrictMode>
1211
<App />
13-
</React.StrictMode>
12+
// </React.StrictMode>
1413
);
15-
16-
// If you want to start measuring performance in your app, pass a function
17-
// to log results (for example: reportWebVitals(console.log))
18-
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
19-
reportWebVitals();

src/logo.svg

-1
This file was deleted.

src/react-app-env.d.ts

-1
This file was deleted.

src/reportWebVitals.ts

-15
This file was deleted.

src/setupTests.ts

-5
This file was deleted.

0 commit comments

Comments
 (0)