Files
big-agi/pages/draw.tsx
T
2024-01-20 20:02:30 -08:00

10 lines
237 B
TypeScript

import * as React from 'react';
import { AppDraw } from '../src/apps/draw/AppDraw';
import { withLayout } from '~/common/layout/withLayout';
export default function DrawPage() {
return withLayout({ type: 'optima' }, <AppDraw />);
}