-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
adds new component
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
frontend/src/lib/components/reporting/ReportingTransactions.svelte
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<script lang="ts"> | ||
import type { ReportingDateRange } from "$lib/types/reporting"; | ||
import ReportingTransactionsButton from "./ReportingTransactionsButton.svelte"; | ||
// TODO: This will be hooked up in a follow up | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
let selectedRange: ReportingDateRange = "all"; | ||
</script> | ||
|
||
<div class="wrapper"> | ||
<ReportingTransactionsButton /> | ||
</div> | ||
|
||
<style lang="scss"> | ||
.wrapper { | ||
display: flex; | ||
flex-direction: column; | ||
gap: var(--padding-3x); | ||
} | ||
</style> |
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