mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-02-25 09:03:33 +00:00
15 lines
346 B
JavaScript
15 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;
|