2021-02-01 09:05:09 +01:00
|
|
|
import { Typography } from 'antd';
|
|
|
|
import React from 'react';
|
|
|
|
import EditStorage from './components/config/edit-storage';
|
2021-02-01 04:45:26 +01:00
|
|
|
|
2021-02-01 08:40:39 +01:00
|
|
|
const { Title } = Typography;
|
2020-10-29 18:16:13 +01:00
|
|
|
|
2021-02-01 08:40:39 +01:00
|
|
|
export default function ConfigStorageInfo() {
|
2020-10-29 18:16:13 +01:00
|
|
|
return (
|
2021-02-01 08:40:39 +01:00
|
|
|
<>
|
|
|
|
<Title level={2}>Storage</Title>
|
|
|
|
<EditStorage />
|
|
|
|
</>
|
2020-10-29 18:22:31 +01:00
|
|
|
);
|
2020-10-29 18:16:13 +01:00
|
|
|
}
|