mirror of https://github.com/buster-so/buster.git
app splitter update
This commit is contained in:
parent
9f23a7bdc2
commit
151d758148
|
@ -1,6 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { getAppSplitterLayout } from '@/components/ui/layouts';
|
|
||||||
import { TermIndividualController } from '@controllers/TermIndividualController';
|
import { TermIndividualController } from '@controllers/TermIndividualController';
|
||||||
|
import { getAppSplitterLayout } from '@/components/ui/layouts';
|
||||||
|
|
||||||
export default async function TermIdPage({ params: { termId } }: { params: { termId: string } }) {
|
export default async function TermIdPage({ params: { termId } }: { params: { termId: string } }) {
|
||||||
const termPageIdLayout = await getAppSplitterLayout('term-page', ['auto', '300px']);
|
const termPageIdLayout = await getAppSplitterLayout('term-page', ['auto', '300px']);
|
||||||
|
|
|
@ -5,5 +5,5 @@ export * from './ClientRedirect';
|
||||||
|
|
||||||
//keepers
|
//keepers
|
||||||
// export * from './AppPageLayout';
|
// export * from './AppPageLayout';
|
||||||
// export * from './AppSplitter';
|
export * from './AppSplitter';
|
||||||
// export * from './AppLayout';
|
// export * from './AppLayout';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import type { Meta, StoryObj } from '@storybook/react';
|
import type { Meta, StoryObj } from '@storybook/react';
|
||||||
import Text from './Text';
|
import { Text } from './Text';
|
||||||
|
|
||||||
const meta: Meta<typeof Text> = {
|
const meta: Meta<typeof Text> = {
|
||||||
title: 'UI/Typography/Text',
|
title: 'UI/Typography/Text',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import type { Meta, StoryObj } from '@storybook/react';
|
import type { Meta, StoryObj } from '@storybook/react';
|
||||||
import Title from './Title';
|
import { Title } from './Title';
|
||||||
|
|
||||||
const meta: Meta<typeof Title> = {
|
const meta: Meta<typeof Title> = {
|
||||||
title: 'UI/Typography/Title',
|
title: 'UI/Typography/Title',
|
||||||
|
|
Loading…
Reference in New Issue