@icedesign/algorithm-model-admin-scaffold
Version:
该模板适用于数据模型类的管理类后台,内置通用的介绍页和丰富的区块,使用时需要根据需求进行删除和添加
35 lines (33 loc) • 692 B
JSX
import React from 'react';
import Logo from '../Logo';
export default () => {
return (
<div
style={{
width: '100%',
padding: '20px 40px',
textAlign: 'center',
lineHeight: '36px',
display: 'flex',
alignItems: 'center',
justifyContent: 'space-between',
}}
>
<div style={{ filter: 'grayscale(100%)', opacity: 0.3 }}>
<Logo isDark />
</div>
<div
style={{
color: '#999',
lineHeight: 1.5,
fontSize: 12,
textAlign: 'right',
}}
>
阿里巴巴集团
<br />
© 2018 版权所有
</div>
</div>
);
};