Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 470
feat(ui): Introduce mosaic recipes and conditions#8830
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
a763cec19f2724ddcbced5d3c2806f2b1d17187514cfdfa2c96d10e8157fec5fb83adb32f8997d46e35cFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| --- | ||
| --- | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| import { DocsViewer } from '@/components/DocsViewer'; | ||
| interface Props { | ||
| params: Promise<{ group: string; component: string }>; | ||
| } | ||
| export default async function ComponentPage({ params }: Props) { | ||
| const { group, component } = await params; | ||
| return ( | ||
| <DocsViewer | ||
| group={group} | ||
| slug={component} | ||
| /> | ||
| ); | ||
| } |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.