File "Page.js"
Full Path: /home/tekvhqgl/public_html/dev2024_old_skip/wp-content/plugins/presto-player/src/admin/settings/components/Page.js
File size: 428 bytes
MIME-type: text/plain
Charset: utf-8
export default ({ children, title, description }) => {
return (
<div className="presto-flow presto-settings__page">
<div className="presto-flow" style={{ "--presto-flow-space": "1em" }}>
{title && <h1>{title}</h1>}
{description && <p>{description}</p>}
</div>
<div className="presto-settings__body ">
<div className="presto-flow">{children}</div>
</div>
</div>
);
};