mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
15 lines
294 B
TypeScript
15 lines
294 B
TypeScript
import { Typography } from 'antd';
|
|
import React from 'react';
|
|
import EditStorage from './components/config/edit-storage';
|
|
|
|
const { Title } = Typography;
|
|
|
|
export default function ConfigStorageInfo() {
|
|
return (
|
|
<>
|
|
<Title level={2}>Storage</Title>
|
|
<EditStorage />
|
|
</>
|
|
);
|
|
}
|