Files
big-agi/pages/workspace.tsx
T
2024-02-01 01:09:25 -08:00

12 lines
287 B
TypeScript

import * as React from 'react';
import { Box } from '@mui/joy';
// import { AppWorkspace } from '../src/apps/personas/AppWorkspace';
import { withLayout } from '~/common/layout/withLayout';
export default function PersonasPage() {
return withLayout({ type: 'optima' }, <Box />);
}