2022-06-10 17:43:10 +08:00

41 lines
777 B
TypeScript

const App = `import { Tooltip, Grid, Link } from "@nextui-org/react";
export default function App() {
return (
<Grid.Container gap={2}>
<Grid>
<Tooltip
content={"Developers love Next.js"}
trigger="click"
color="primary"
>
<Card variant="flat">
<Link>
Click me
</Link>
</Card>
</Tooltip>
</Grid>
<Grid>
<Tooltip
content={"Developers love Next.js"}
trigger="hover"
color="secondary"
>
<Button auto flat color="secondary">
Hover me
</Button>
</Tooltip>
</Grid>
</Grid.Container>
);
}`;
const react = {
'/App.js': App
};
export default {
...react
};