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

{customNestedViewTitle}

This custom view was added through the Payload config:

) } export default CustomNestedView