mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-10-02 08:06:37 +08:00
12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
import React from 'react';
|
|
import { Header, Segment } from 'semantic-ui-react';
|
|
import MjLogsTable from '../../components/MjLogsTable';
|
|
|
|
const Midjourney = () => (
|
|
<>
|
|
<MjLogsTable />
|
|
</>
|
|
);
|
|
|
|
export default Midjourney;
|