mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 06:46:01 +03:00
14 lines
294 B
TypeScript
14 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 />
|
|
</>
|
|
);
|
|
}
|