({ children }: Props)
| 2 | children: React.ReactNode |
| 3 | } |
| 4 | export const ArticleTitle = ({ children }: Props) => { |
| 5 | return ( |
| 6 | <div className="d-flex flex-items-baseline flex-justify-between"> |
| 7 | <h1 className="border-bottom-0">{children}</h1> |
| 8 | </div> |
| 9 | ) |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected