File size: 302 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
type BylineProps = {
author: string;
};
export default function Byline({ author }: BylineProps) {
return (
<>
<div className="byline">By {author}</div>
<style jsx>{`
.byline {
color: green;
font-weight: bolder;
}
`}</style>
</>
);
}
|