Skip to content

Commit

Permalink
new interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ferso committed Oct 5, 2024
1 parent 735f6eb commit 4b986b1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@ import {
Stack,
Typography,
} from "@mui/material";
import { DataGrid, GridColDef } from "@mui/x-data-grid";

const columns: GridColDef[] = [
{ field: "amount", headerName: "Transanction Amount" },
{ field: "status", headerName: "status", width: 100 },
{ field: "date", headerName: "Date", width: 100 },
];

const rows = [
{ id: 1, amount: "1,800", status: "Completed", date: "2024-08-12" },
Expand All @@ -23,8 +16,6 @@ const rows = [
{ id: 6, amount: "2,100", status: "Completed", date: "2024-08-12" },
];

const paginationModel = { page: 0, pageSize: 5 };

export const HomeTransactions = () => {
return (
<Card>
Expand Down
9 changes: 1 addition & 8 deletions src/lib/dash/interface/screens/home/home.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,7 @@ import { HomeTransactions } from "@dash/interface/components/home-transactions/h
import MarketChart from "@dash/interface/components/market-chart/market-chart";
import { ScreenTitle } from "@dash/interface/components/screen-title/screen-title";
import { MainLayout } from "@dash/interface/layouts/main.layout";
import {
Button,
Card,
CardContent,
Container,
Grid2,
Stack,
} from "@mui/material";
import { Button, Container, Grid2, Stack } from "@mui/material";
export const HomeScreen = () => {
return (
<MainLayout>
Expand Down

0 comments on commit 4b986b1

Please sign in to comment.