mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +01:00
Report updates.
This commit is contained in:
parent
40f53e8856
commit
0fb93ff00b
147 changed files with 1095 additions and 628 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue