import React, { type FC } from 'react'; import { Button } from '../../daisy'; import { SystemAboutPageSection } from './SystemAboutPageSection'; export interface SystemAboutPageAuthorInfoProps { title?: string; author?: { name?: string; link?: string; }; } export const SystemAboutPageAuthorInfo: FC = (props) => { const { title = '控制台', author: { name = 'Wener', link = 'https://wener.me' } = {} } = props; return (
由{' '} {' '} 提供技术支持。
); };