18 lines
324 B
TypeScript
18 lines
324 B
TypeScript
import Card from "./components/Card";
|
|
import { Surface } from "@heroui/react";
|
|
|
|
function App() {
|
|
return (
|
|
<>
|
|
<Surface
|
|
className="flex min-w-[320px] flex-col gap-3 rounded-3xl p-6"
|
|
variant="default"
|
|
>
|
|
<Card topic="React Hooks" />
|
|
</Surface>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default App;
|