import { useRouter } from "next/navigation"; import { Box, Button, IconButton, Paper, Typography } from "@mui/material"; import { PieCharts } from "../PieCharts/PieCharts"; import MoreVertIcon from "@mui/icons-material/MoreVert"; import { TransactionsOverViewTable } from "./components/TransactionsOverViewTable"; import "./TransactionsOverView.scss"; export const TransactionsOverView = () => { const router = useRouter(); return ( {/* Title and All Transactions Button */} Transactions Overview (Last 24h) {/* Chart and Table */} ); };