import React, { useState } from 'react'; import { Switch, Row, Card, Avatar, Icon } from '@btri-ui/base'; export default () => { const [loading, setLoading] = useState(false); const onChange = () => setLoading(v => !v); return (
} title="姓名" description="其他描述信息" /> , , , ]} hasSkeletion loading={loading} skeletonProps={{ avatar: true }} > } title="姓名" description="其他描述信息" />
); };