mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-11 06:00:15 -07:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
import * as React from 'react';
|
|
|
|
import { AppDiff } from '../src/apps/diff/AppDiff';
|
|
|
|
import { withLayout } from '~/common/layout/withLayout';
|
|
|
|
|
|
export default function DiffPage() {
|
|
return withLayout({ type: 'optima' }, <AppDiff />);
|
|
} |