mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
import React from 'react'
|
|
|
|
export default function Header() {
|
|
return (
|
|
<header>
|
|
<h1 className="pl-3 py-3 text-3xl font-extrabold text-gray-900 bg-gray-200 tracking-tight">PDFer</h1>
|
|
</header>
|
|
)
|
|
}
|