mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
16 lines
257 B
TypeScript
16 lines
257 B
TypeScript
const App = `import {Pagination} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Pagination showShadow color="warning" total={10} initialPage={1} />
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|