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