Skip to content

Commit c4b2c7b

Browse files
committed
add next pages
1 parent 407acc2 commit c4b2c7b

File tree

101 files changed

+2626
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+2626
-14
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as AccessibleIcon from '@repo/test-registry/components/accessible-icon';
2+
3+
export default function Page() {
4+
return <AccessibleIcon.Basic />;
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as Accordion from '@repo/test-registry/components/accordion';
2+
3+
export default function Page() {
4+
return <Accordion.Basic />;
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as AlertDialog from '@repo/test-registry/components/alert-dialog';
2+
3+
export default function Page() {
4+
return <AlertDialog.Basic />;
5+
}

apps/test-next/app/arrow/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as Arrow from '@repo/test-registry/components/arrow';
2+
3+
export default function Page() {
4+
return <Arrow.Basic />;
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as AspectRatio from '@repo/test-registry/components/aspect-ratio';
2+
3+
export default function Page() {
4+
return <AspectRatio.Basic />;
5+
}

apps/test-next/app/avatar/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as Avatar from '@repo/test-registry/components/avatar';
2+
3+
export default function Page() {
4+
return <Avatar.Basic />;
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as Checkbox from '@repo/test-registry/components/checkbox';
2+
3+
export default function Page() {
4+
return <Checkbox.Basic />;
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as Collapsible from '@repo/test-registry/components/collapsible';
2+
3+
export default function Page() {
4+
return <Collapsible.Basic />;
5+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import * as React from 'react';
2+
import {
3+
Unstable,
4+
UnstableItem,
5+
Stable,
6+
StableItem,
7+
} from '@repo/test-registry/components/collection';
8+
9+
export default function Page() {
10+
return (
11+
<div>
12+
<h2>Unstable Collection</h2>
13+
<Unstable>
14+
<UnstableItem>Item 1</UnstableItem>
15+
<UnstableItem>Item 2</UnstableItem>
16+
<UnstableItem>Item 3</UnstableItem>
17+
</Unstable>
18+
<hr />
19+
<h2>Stable Collection</h2>
20+
<Stable>
21+
<StableItem>Item 1</StableItem>
22+
<StableItem>Item 2</StableItem>
23+
<StableItem>Item 3</StableItem>
24+
</Stable>
25+
</div>
26+
);
27+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import * as ContextMenu from '@repo/test-registry/components/context-menu';
2+
3+
export default function Page() {
4+
return <ContextMenu.Basic />;
5+
}

0 commit comments

Comments
 (0)