8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
export default function DemoModeBanner() {
|
|
return (
|
|
<div className="h-min w-full rounded bg-yellow-100 px-4 py-2 text-center text-black">
|
|
Demo mode is on. All modifications are disabled.
|
|
</div>
|
|
);
|
|
}
|