mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-14 00:32:35 +10:00
6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
const Heading: React.FC = ({ children }) => {
|
|
return <h3 className="my-2 inline-block border-b px-5 pb-2">{children}</h3>;
|
|
};
|
|
|
|
export default Heading;
|