Report updates.
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
import classNames from 'classnames';
|
||||
import React from 'react';
|
||||
import styles from './PageHeader.module.css';
|
||||
|
||||
export function PageHeader({ title, children }) {
|
||||
export function PageHeader({ title, children, className }) {
|
||||
return (
|
||||
<div className={styles.header}>
|
||||
<div className={classNames(styles.header, className)}>
|
||||
<div className={styles.title}>{title}</div>
|
||||
<div className={styles.actions}>{children}</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user