This website works better with JavaScript.
Home
Explore
帮助
返回水杉在线
登录水杉在线
登录水杉码园
10205501451
/
Lazy_Timer
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
fe-17 完成折线图
master
Chunxian Zhang
2 years ago
parent
6338b8c5bf
commit
89ada6ae36
1 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+14
-0
lazy-timer-fe/src/pages/Charts/Line.jsx
+ 14
- 0
lazy-timer-fe/src/pages/Charts/Line.jsx
View File
@ -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
;
Write
Preview
Loading…
Cancel
Save