Skip to content

Commit aaec91a

Browse files
committed
[learn-js-2025] remove unused css and images
1 parent 4b12cf3 commit aaec91a

File tree

7 files changed

+0
-125
lines changed

7 files changed

+0
-125
lines changed

learn-js-2025/todo-app/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
65
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
76
<title>Vite + React + TS</title>
87
</head>

learn-js-2025/todo-app/public/vite.svg

-1
This file was deleted.

learn-js-2025/todo-app/src/App.css

-42
This file was deleted.

learn-js-2025/todo-app/src/App.tsx

-11
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
import { useState } from 'react'
22
import { createTheme, MantineProvider } from '@mantine/core'
3-
import reactLogo from './assets/react.svg'
4-
import viteLogo from '/vite.svg'
5-
import './App.css'
63

74
const theme = createTheme({})
85

@@ -11,14 +8,6 @@ function App(): JSX.Element {
118

129
return (
1310
<MantineProvider theme={theme}>
14-
<div>
15-
<a href="https://vite.dev" target="_blank">
16-
<img src={viteLogo} className="logo" alt="Vite logo" />
17-
</a>
18-
<a href="https://react.dev" target="_blank">
19-
<img src={reactLogo} className="logo react" alt="React logo" />
20-
</a>
21-
</div>
2211
<h1>Vite + React</h1>
2312
<div className="card">
2413
<button onClick={() => setCount((count) => count + 1)}>

learn-js-2025/todo-app/src/assets/react.svg

-1
This file was deleted.

learn-js-2025/todo-app/src/index.css

-68
This file was deleted.

learn-js-2025/todo-app/src/main.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { StrictMode } from 'react'
22
import { createRoot } from 'react-dom/client'
3-
import './index.css'
43
import App from './App.tsx'
54

65
createRoot(document.getElementById('root')!).render(

0 commit comments

Comments
 (0)