Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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>
</>
);
}