feat: accounts and history pages are in place
This commit is contained in:
parent
09fc5dc367
commit
8c42d246ea
7 changed files with 1135 additions and 3 deletions
|
|
@ -85,8 +85,16 @@ function Sidebar({ screen, setScreen, counts }) {
|
|||
</button>
|
||||
))}
|
||||
<div className="ak-sb-section" style={{ marginTop: 16 }}>SETTINGS</div>
|
||||
<button className="ak-sb-item"><Icon name="card" size={16} /><span className="ak-sb-label">Accounts</span></button>
|
||||
<button className="ak-sb-item"><Icon name="clock" size={16} /><span className="ak-sb-label">History</span></button>
|
||||
<button
|
||||
className={`ak-sb-item ${screen === "accounts" ? "active" : ""}`}
|
||||
onClick={() => setScreen("accounts")}>
|
||||
<Icon name="card" size={16} /><span className="ak-sb-label">Accounts</span>
|
||||
</button>
|
||||
<button
|
||||
className={`ak-sb-item ${screen === "history" ? "active" : ""}`}
|
||||
onClick={() => setScreen("history")}>
|
||||
<Icon name="clock" size={16} /><span className="ak-sb-label">History</span>
|
||||
</button>
|
||||
<div style={{ flex: 1 }}></div>
|
||||
<div className="ak-sb-foot">
|
||||
<div className="ak-sb-foot-row">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue