Files
pdfer/components/Header.tsx
2021-02-25 00:35:03 +01:00

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>
)
}