mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 07:55:52 +01:00
7 lines
239 B
TypeScript
7 lines
239 B
TypeScript
import { HomarrCardWrapper } from './HomarrCardWrapper';
|
|
import { BaseTileProps } from './type';
|
|
|
|
export const EmptyTile = ({ className }: BaseTileProps) => {
|
|
return <HomarrCardWrapper className={className}>Empty</HomarrCardWrapper>;
|
|
};
|