当目前没有数据时,用于显式的用户提示。
1() => {2 return <Empty desc={'No_Data'} />3};4
你可以通过设置icon和imageStyle来设置占位图。
1() => {2 const { Add } = KubeIcon;3 return <Empty desc="No_Data" icon={<Add />} imageStyle={{ width: '48px', height: '48px' }} />;4};5