1
0

add atmpshere

This commit is contained in:
2025-11-20 12:33:57 +09:00
parent 93ea0e88f7
commit 16a52e13de
20 changed files with 1644 additions and 0 deletions

10
atmosphere/src/main.tsx Normal file
View File

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