mirror of
https://github.com/fleetdm/fleet
synced 2026-05-02 10:57:25 +00:00
relates to #11002 Implements the UI for mdm macos setup end user authentication page.   - [x] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. - [x] Manual QA for all new/changed functionality
13 lines
260 B
TypeScript
13 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;
|