Files
payload/test/CustomDashboard.tsx
2024-03-07 11:33:46 -05:00

8 lines
116 B
TypeScript

'use client'
import React from 'react'
export const CustomDashboard: React.FC = () => {
return <h1>hello</h1>
}