mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
26 lines
499 B
TypeScript
26 lines
499 B
TypeScript
const App = `import { Progress, Grid } from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Grid.Container xs={12} sm={6} gap={2}>
|
|
<Grid>
|
|
<Progress striped value={200} max={250} />
|
|
</Grid>
|
|
<Grid>
|
|
<Progress color="secondary" striped value={45} />
|
|
</Grid>
|
|
<Grid>
|
|
<Progress color="success" striped value={29} />
|
|
</Grid>
|
|
</Grid.Container>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
'/App.js': App
|
|
};
|
|
|
|
export default {
|
|
...react
|
|
};
|