Files
sqlchat/components/Empty.tsx
2023-03-20 13:42:47 +08:00

10 lines
184 B
TypeScript

interface Props {
content?: string;
}
const Empty = (props: Props) => {
return <div className="w-full flex flex-col justify-center items-center"></div>;
};
export default Empty;