10 lines
311 B
TypeScript
10 lines
311 B
TypeScript
export default function SettingsPanel() {
|
|
return (
|
|
<div className="flex-[3] min-w-0 bg-card border border-border rounded-xl p-8 flex flex-col shadow-sm">
|
|
<div className="flex-1 w-full flex items-center justify-center text-muted-foreground text-base">
|
|
Settings
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|