-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: integrate backend with yearly, monthly dividend ranking pages a…
…long with design qa
- Loading branch information
1 parent
c2d8231
commit 49cd23f
Showing
9 changed files
with
108 additions
and
593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import { getYearRange } from "@/utils/date"; | ||
import React from "react"; | ||
|
||
export const Header = React.memo(() => { | ||
return ( | ||
<div className="flex w-full flex-col items-start justify-center gap-2 p-5"> | ||
<h2 className="text-h2 text-grey-900">Monthly Dividend Income</h2> | ||
<p className=" text-body3 text-grey-600">YYYY.MM ~ YYYY.MM</p> | ||
<p className=" text-body3 text-grey-600">{getYearRange(new Date())}</p> | ||
</div> | ||
); | ||
}); |
Oops, something went wrong.