mirror of
https://github.com/fleetdm/fleet
synced 2026-05-02 10:57:25 +00:00
14 lines
260 B
TypeScript
14 lines
260 B
TypeScript
|
|
import React from "react";
|
||
|
|
|
||
|
|
const baseClass = "section-header";
|
||
|
|
|
||
|
|
interface ISectionHeaderProps {
|
||
|
|
title: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const SectionHeader = ({ title }: ISectionHeaderProps) => {
|
||
|
|
return <h2 className={baseClass}>{title}</h2>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default SectionHeader;
|