Files
langchain-go/frontend/src/App.tsx
T
2026-03-27 20:01:56 +08:00

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;