mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
22 lines
401 B
TypeScript
22 lines
401 B
TypeScript
const App = `import { Pagination,Grid } from '@nextui-org/react';
|
|
|
|
export default function App() {
|
|
return <Grid.Container xs={12} gap={2} >
|
|
<Grid>
|
|
<Pagination bordered total={10} initialPage={6} />
|
|
</Grid>
|
|
<Grid>
|
|
<Pagination rounded bordered total={10} initialPage={6} />
|
|
</Grid>
|
|
</Grid.Container>
|
|
}
|
|
`;
|
|
|
|
const react = {
|
|
'/App.js': App
|
|
};
|
|
|
|
export default {
|
|
...react
|
|
};
|