import React from "react"; import { Account } from "../types"; import { Box, Stack, Typography } from "@mui/material"; interface AccountDetailsProps { account: Account | undefined; } const AccountDetails: React.FC = ({ account }) => { return ( Address: {account?.address} Public Key: {account?.pubKey} HD Path: {account?.hdPath} ); }; export default AccountDetails;