24 lines
751 B
TypeScript
24 lines
751 B
TypeScript
import LineChartOne from "@/components/charts/line/LineChartOne";
|
|
import ComponentCard from "@/components/common/ComponentCard";
|
|
import PageBreadcrumb from "@/components/common/PageBreadCrumb";
|
|
import { Metadata } from "next";
|
|
import React from "react";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Next.js Line Chart | TailAdmin - Next.js Dashboard Template",
|
|
description:
|
|
"This is Next.js Line Chart page for TailAdmin - Next.js Tailwind CSS Admin Dashboard Template",
|
|
};
|
|
export default function LineChart() {
|
|
return (
|
|
<div>
|
|
<PageBreadcrumb pageTitle="Line Chart" />
|
|
<div className="space-y-6">
|
|
<ComponentCard title="Line Chart 1">
|
|
<LineChartOne />
|
|
</ComponentCard>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|