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