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

7 lines
239 B
TypeScript
Raw Normal View History

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