mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-30 02:32:03 +08:00
10 lines
184 B
TypeScript
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;
|