30 lines
503 B
React
30 lines
503 B
React
|
import React from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import './Header.scss';
|
||
|
|
||
|
function Header({ children }) {
|
||
|
return (
|
||
|
<div className="header">
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Header.propTypes = {
|
||
|
children: PropTypes.node.isRequired,
|
||
|
};
|
||
|
|
||
|
function TitleWrapper({ children }) {
|
||
|
return (
|
||
|
<div className="header__title-wrapper">
|
||
|
{children}
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
TitleWrapper.propTypes = {
|
||
|
children: PropTypes.node.isRequired,
|
||
|
};
|
||
|
|
||
|
export { Header as default, TitleWrapper };
|