Files
Homarr/src/components/Dashboard/Tiles/EmptyTile.tsx

7 lines
231 B
TypeScript
Raw Normal View History

2022-12-10 22:14:31 +01:00
import { HomarrCardWrapper } from './HomarrCardWrapper';
import { BaseTileProps } from './type';
2022-12-20 11:45:33 +09:00
export const EmptyTile = ({ className }: BaseTileProps) => (
<HomarrCardWrapper className={className}>Empty</HomarrCardWrapper>
);