| 82 | ] |
| 83 | |
| 84 | interface Props { |
| 85 | title?: React.ReactNode |
| 86 | subTitle?: React.ReactNode |
| 87 | } |
| 88 | |
| 89 | export default function Header(props: Props) { |
| 90 | const { title = <div className="text-xl font-bold">Dumpfun</div>, subTitle } = |
nothing calls this directly
no outgoing calls
no test coverage detected