浏览代码

fe-17 完成折线图

master
Chunxian Zhang 2 年前
父节点
当前提交
89ada6ae36
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      lazy-timer-fe/src/pages/Charts/Line.jsx

+ 14
- 0
lazy-timer-fe/src/pages/Charts/Line.jsx 查看文件

@ -0,0 +1,14 @@
import React from 'react';
import { ChartsHeader, LineChart } from '../../components';
const Line = () => (
<div className="m-4 md:m-10 mt-24 p-10 bg-white dark:bg-secondary-dark-bg rounded-3xl">
<ChartsHeader category="Line" title="Inflation Rate" />
<div className="w-full">
<LineChart />
</div>
</div>
);
export default Line;

正在加载...
取消
保存