Skip to content

Commit

Permalink
add tx details page
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennievon committed Dec 19, 2023
1 parent 648913a commit 732bf2c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tools/obscuroscan_v3/frontend/pages/tx/[hash].tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import Layout from "@/src/components/layouts/default-layout";
import EmptyState from "@/src/components/modules/common/empty-state";
import { Button } from "@/src/components/ui/button";
import { useRouter } from "next/router";
import React from "react";

const TransactionDetails = () => {
const { push } = useRouter();

return (
<Layout>
<EmptyState
title="Transaction Details"
description="Coming soon..."
imageSrc="/assets/images/clock.png"
imageAlt="Clock"
action={<Button onClick={() => push("/")}>Go Home</Button>}
/>
</Layout>
);
};

export default TransactionDetails;

0 comments on commit 732bf2c

Please sign in to comment.