TraceStudio-dev/web/src/App.tsx

11 lines
198 B
TypeScript
Raw Normal View History

2026-01-07 19:34:45 +08:00
import React from 'react'
import './index.css'
import './styles/tailwind.css'
import AppShell from './components/AppShell'
const App: React.FC = () => {
return <AppShell />
}
export default App