File tree 7 files changed +0
-125
lines changed
7 files changed +0
-125
lines changed Original file line number Diff line number Diff line change 2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="UTF-8 " />
5
- < link rel ="icon " type ="image/svg+xml " href ="/vite.svg " />
6
5
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
7
6
< title > Vite + React + TS</ title >
8
7
</ head >
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
import { useState } from 'react'
2
2
import { createTheme , MantineProvider } from '@mantine/core'
3
- import reactLogo from './assets/react.svg'
4
- import viteLogo from '/vite.svg'
5
- import './App.css'
6
3
7
4
const theme = createTheme ( { } )
8
5
@@ -11,14 +8,6 @@ function App(): JSX.Element {
11
8
12
9
return (
13
10
< 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 >
22
11
< h1 > Vite + React</ h1 >
23
12
< div className = "card" >
24
13
< button onClick = { ( ) => setCount ( ( count ) => count + 1 ) } >
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
import { StrictMode } from 'react'
2
2
import { createRoot } from 'react-dom/client'
3
- import './index.css'
4
3
import App from './App.tsx'
5
4
6
5
createRoot ( document . getElementById ( 'root' ) ! ) . render (
You can’t perform that action at this time.
0 commit comments