mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
## Sidequest while doing feature work:  - [x] QA'd all new/changed functionality manually --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
17 lines
311 B
TypeScript
17 lines
311 B
TypeScript
import React from "react";
|
|
|
|
const baseClass = "page-description";
|
|
|
|
interface IPageDescription {
|
|
content: React.ReactNode;
|
|
}
|
|
|
|
const PageDescription = ({ content }: IPageDescription) => {
|
|
return (
|
|
<div className={`${baseClass}`}>
|
|
<p>{content}</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PageDescription;
|