simplifies the APIKeyModal communication and state management, adds

conversation components
This commit is contained in:
ajaythapliyal
2023-02-18 16:52:14 +05:30
parent 5341d03749
commit 10ac36ee7b
8 changed files with 88 additions and 4 deletions

9
frontend/src/Avatar.tsx Normal file
View File

@@ -0,0 +1,9 @@
export default function Avatar({
avatar,
size,
}: {
avatar: string;
size?: 'SMALL' | 'MEDIUM' | 'LARGE';
}) {
return <div>{avatar}</div>;
}