Commit 5079ece0 by Arjun Jhukal

updated the transaction table for dashboard as well

parent 413162cc
"use client"
import PageHeader from '@/components/molecules/PageHeader' import PageHeader from '@/components/molecules/PageHeader'
import React from 'react' import React from 'react'
import TransactionTable from './TransactionTable' import TransactionTable from './TransactionTable'
export default function AllTransactionsPage() { export default function AllTransactionsPage() {
const [search, setSearch] = React.useState("");
return ( return (
<> <>
<PageHeader title='Tranactions' /> <PageHeader title='Tranactions' />
<TransactionTable /> <TransactionTable search={search} />
</> </>
) )
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment