Files
DenReg/registry/src/views/_pkgheader.tsx
Fabian Stamm a14a5b9462 Make it modern
2023-11-28 16:10:33 +01:00

23 lines
475 B
TypeScript

// /// <reference path="../types/jsx.d.ts" />
import { Nano } from "../deps.ts";
const { h, Fragment } = Nano;
import type { IPackage } from "../db.ts";
export default function index({
pkg,
version,
}: {
pkg: IPackage;
version?: string;
}) {
return (
<>
<h2 style="margin-bottom: 0">Package: {pkg.name}</h2>
<h4 class="text-muted" style="margin-top: 0; margin-left: .5rem">
By {pkg.owner}
</h4>
</>
);
}