22 lines
745 B
TypeScript
22 lines
745 B
TypeScript
import React from "react";
|
|
|
|
export default function Placeholder() {
|
|
return (
|
|
<div className="p-8 border-2 border-dashed border-slate-700 rounded-lg text-center">
|
|
<div className="text-4xl mb-4">🚧</div>
|
|
<h3 className="text-xl font-bold text-slate-300">Component Unavailable</h3>
|
|
<p className="text-slate-500 mt-2">This feature is currently under development.</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Named exports for compatibility
|
|
export const Card = Placeholder;
|
|
export const Stats = Placeholder;
|
|
export const Table = Placeholder;
|
|
export const List = Placeholder;
|
|
export const Form = Placeholder;
|
|
export const Manager = Placeholder;
|
|
export const Modal = Placeholder;
|
|
export const Preview = Placeholder;
|