11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
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
|