.ts
TypeScript
(application/typescript)
// 1st-party
import type { ReactView } from "@ethicdevs/react-monolith";
// 3rd-party
import React from "react";
// app
import type { CommonProps } from "../../types";
import { Layout, PageWrapper } from "../../components";

interface SettingsKeysListViewProps extends CommonProps {}

const SettingsKeysListView: ReactView<SettingsKeysListViewProps> = ({
  commonProps,
}) => {
  return (
    <Layout {...commonProps}>
      <PageWrapper>
        <h1>Keys List View</h1>
      </PageWrapper>
    </Layout>
  );
};

export default SettingsKeysListView;