import React from 'react'; import { HydraAdmin, type HydraAdminProps } from '../../hydra'; import authProvider from './basicAuth'; import DevtoolsLayout from '../layout/DevtoolsLayout'; /** * # Protected `` * The `` component protected by the `authProvider` which is a basic authentication provider. * * Login with: john/123 */ const Admin = ({ entrypoint }: JwtAuthProps) => ( ); export default Admin; export interface JwtAuthProps extends Pick {}