2023-08-03 09:20:54 +03:00
|
|
|
import { useState } from 'react'
|
|
|
|
import reactLogo from './assets/react.svg'
|
|
|
|
import viteLogo from '/vite.svg'
|
2023-08-04 09:43:07 +03:00
|
|
|
import { Button, TamaguiProvider } from 'tamagui'
|
2023-08-03 09:20:54 +03:00
|
|
|
import './App.css'
|
2023-08-04 09:43:07 +03:00
|
|
|
import '@tamagui/react-17-patch'
|
|
|
|
|
|
|
|
import config from '../tamagui.config'
|
2023-08-03 09:20:54 +03:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
const [count, setCount] = useState(0)
|
|
|
|
|
|
|
|
return (
|
2023-08-04 09:43:07 +03:00
|
|
|
<TamaguiProvider config={config}>
|
|
|
|
<Button size="$6">LEL</Button>
|
2023-08-03 09:20:54 +03:00
|
|
|
<div>
|
|
|
|
<a href="https://vitejs.dev" target="_blank">
|
|
|
|
<img src={viteLogo} className="logo" alt="Vite logo" />
|
|
|
|
</a>
|
|
|
|
<a href="https://react.dev" target="_blank">
|
|
|
|
<img src={reactLogo} className="logo react" alt="React logo" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<h1>Vite + React</h1>
|
|
|
|
<div className="card">
|
2023-08-04 09:43:07 +03:00
|
|
|
<button onClick={() => setCount(count => count + 1)}>count is {count}</button>
|
2023-08-03 09:20:54 +03:00
|
|
|
<p>
|
|
|
|
Edit <code>src/App.tsx</code> and save to test HMR
|
|
|
|
</p>
|
|
|
|
</div>
|
2023-08-04 09:43:07 +03:00
|
|
|
<p className="read-the-docs">Click on the Vite and React logos to learn more</p>
|
|
|
|
</TamaguiProvider>
|
2023-08-03 09:20:54 +03:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App
|