2026-03-25 09:14:24 +08:00
|
|
|
import Card from "./components/Card";
|
|
|
|
|
import { Surface } from "@heroui/react";
|
2026-03-24 11:59:20 +08:00
|
|
|
|
2026-03-23 22:33:30 +08:00
|
|
|
function App() {
|
|
|
|
|
return (
|
2026-03-25 09:14:24 +08:00
|
|
|
<>
|
|
|
|
|
<Surface
|
|
|
|
|
className="flex min-w-[320px] flex-col gap-3 rounded-3xl p-6"
|
|
|
|
|
variant="default"
|
|
|
|
|
>
|
|
|
|
|
<Card />
|
|
|
|
|
</Surface>
|
|
|
|
|
</>
|
|
|
|
|
);
|
2026-03-23 22:33:30 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-25 09:14:24 +08:00
|
|
|
export default App;
|