2025-11-07 11:37:09 +08:00

11 lines
234 B
TypeScript

import DetectorCard from './components/DetectorCard'
export function App() {
return (
<div className="min-h-screen w-full flex items-center justify-center p-4">
<DetectorCard />
</div>
)
}
export { App as default }