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

12 lines
147 B
TypeScript
Raw Normal View History

2026-03-24 11:12:33 +08:00
import { Button } from '@heroui/react';
2026-03-23 22:33:30 +08:00
function App() {
return (
2026-03-24 11:12:33 +08:00
<> <Button>
My Button
</Button></>
2026-03-23 22:33:30 +08:00
)
}
export default App