karusic/front/src/components/EmptyEnd.tsx

16 lines
252 B
TypeScript

import { Flex } from "@/ui";
export const EmptyEnd = () => {
return (
<Flex
style={{
width: "full",
height: "25%",
minHeight: "250px",
}}
// borderWidth="1px"
// borderColor="red"
></Flex>
);
};