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