* moving breadcrumbs to sticky header * update scroll * update color-bg-primary to color-bg-default * change back to primary since were on primer 17 * add effect dependency * not changing * clip left box shadow of header and unmount * update to default * update breadcrumbs tests * sticky editor
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
type Props = {
|
|
children: React.ReactNode
|
|
}
|
|
export const ArticleTitle = ({ children }: Props) => {
|
|
return (
|
|
<div className="d-flex flex-items-baseline flex-justify-between">
|
|
<h1 className="border-bottom-0">{children}</h1>
|
|
</div>
|
|
)
|
|
}
|