22 lines
709 B
TypeScript
22 lines
709 B
TypeScript
import ComponentCard from "../../../components/common/ComponentCard";
|
|
import PageMeta from "../../../components/common/PageMeta";
|
|
|
|
export default function Popovers() {
|
|
return (
|
|
<>
|
|
<PageMeta
|
|
title="React.js Popovers Dashboard | TailAdmin - React.js Admin Dashboard Template"
|
|
description="This is React.js Popovers Dashboard page for TailAdmin - React.js Tailwind CSS Admin Dashboard Template"
|
|
/>
|
|
<div className="space-y-5 sm:space-y-6">
|
|
<ComponentCard title="Popovers">
|
|
<p className="text-sm text-gray-500 dark:text-gray-400">
|
|
Popover component will be implemented here.
|
|
</p>
|
|
</ComponentCard>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|