Files
langchain-go/frontend/src/App.tsx
T

18 lines
324 B
TypeScript
Raw Normal View History

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"
>
2026-03-27 20:01:56 +08:00
<Card topic="React Hooks" />
2026-03-25 09:14:24 +08:00
</Surface>
</>
);
2026-03-23 22:33:30 +08:00
}
2026-03-25 09:14:24 +08:00
export default App;