app splitter update

This commit is contained in:
Nate Kelley 2025-02-28 17:35:34 -07:00
parent 9f23a7bdc2
commit 151d758148
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import React from 'react';
import { getAppSplitterLayout } from '@/components/ui/layouts';
import { TermIndividualController } from '@controllers/TermIndividualController';
import { getAppSplitterLayout } from '@/components/ui/layouts';
export default async function TermIdPage({ params: { termId } }: { params: { termId: string } }) {
const termPageIdLayout = await getAppSplitterLayout('term-page', ['auto', '300px']);

View File

@ -5,5 +5,5 @@ export * from './ClientRedirect';
//keepers
// export * from './AppPageLayout';
// export * from './AppSplitter';
export * from './AppSplitter';
// export * from './AppLayout';

View File

@ -1,5 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react';
import Text from './Text';
import { Text } from './Text';
const meta: Meta<typeof Text> = {
title: 'UI/Typography/Text',

View File

@ -1,5 +1,5 @@
import type { Meta, StoryObj } from '@storybook/react';
import Title from './Title';
import { Title } from './Title';
const meta: Meta<typeof Title> = {
title: 'UI/Typography/Title',