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