@ozo/react-jazz
Version:
React 桌面端开发脚手架,基于CRA3,通用、开箱即用。
24 lines (19 loc) • 706 B
JavaScript
import React from 'react';
import { ResponsiveGrid } from '@alifd/next';
import PageHeader from '@/components/PageHeader';
import SettingSystemBlock from './components/SettingSystemBlock';
const { Cell } = ResponsiveGrid;
const Settings = () => (
<ResponsiveGrid style={{ padding: '50px' }}>
<Cell colSpan={12}>
<PageHeader
title="系统设置"
description="系统设置描述系统设置描述系统设置描述系统设置描述系统设置描述系统设置描述系统设置描述"
/>
</Cell>
<Cell colSpan={12}>
<SettingSystemBlock />
</Cell>
</ResponsiveGrid>
);
export default Settings;