created default React + TypeScript project via Vite

This commit is contained in:
Вячеслав 2025-03-15 01:56:31 +05:00
parent 267ca26671
commit e43578b36d
17 changed files with 3363 additions and 0 deletions

View file

@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)