mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-10 21:50:14 -07:00
12 lines
287 B
TypeScript
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 />);
|
|
} |