mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-04-21 19:45:20 +00:00
16 lines
346 B
JavaScript
16 lines
346 B
JavaScript
|
|
import React from 'react'
|
||
|
|
|
||
|
|
const FrameHeading = (props) => {
|
||
|
|
return (
|
||
|
|
<header className="bg-white shadow-sm">
|
||
|
|
<div className="max-w-7xl mx-auto py-4 px-4 sm:px-6 lg:px-8">
|
||
|
|
<h1 className="text-lg leading-6 font-semibold text-gray-900">
|
||
|
|
{props.heading}
|
||
|
|
</h1>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default FrameHeading;
|