feat(ApiKeysPage): add Header component to the ApiKeysPage for consistent layout and navigation
The Header component is added to the ApiKeysPage to provide a consistent layout and navigation across the application. This will improve the user experience and make it easier for users to navigate between different pages.
This commit is contained in:
parent
0c0d8cfdb3
commit
99407c2617
1 changed files with 2 additions and 0 deletions
|
|
@ -18,6 +18,7 @@ import SecretKeyModal from "../../modals/SecretKeyModal";
|
|||
|
||||
import moment from "moment";
|
||||
import { ApiKey } from "../../types/components";
|
||||
import Header from "../../components/headerComponent";
|
||||
|
||||
export default function ApiKeysPage() {
|
||||
const [loadingKeys, setLoadingKeys] = useState(true);
|
||||
|
|
@ -80,6 +81,7 @@ export default function ApiKeysPage() {
|
|||
|
||||
return (
|
||||
<>
|
||||
<Header></Header>
|
||||
{userData && (
|
||||
<div className="main-page-panel">
|
||||
<div className="m-auto flex h-full flex-row justify-center">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue