import type { ReactView } from "@ethicdevs/react-monolith";
import React from "react";
import type { CommonProps } from "../../types";
import { Layout, PageWrapper } from "../../components";
interface SettingsKeysListViewProps extends CommonProps {}
const SettingsKeysListView: ReactView<SettingsKeysListViewProps> = ({
commonProps,
}) => {
return (
<Layout
{...commonProps}
showDrawerSettings
username={commonProps.currentUserUsername!}
>
<PageWrapper>
<h1>Keys List View</h1>
</PageWrapper>
</Layout>
);
};
export default SettingsKeysListView;