import React from 'react' import { type AdminViewComponent } from '../../../../../packages/payload/src/config/types' import { customViewTitle } from '../../../shared' const CustomView: AdminViewComponent = () => { return (

{customViewTitle}

This custom view was added through the Payload config:

) } export default CustomView