Heading.tsx
import React from 'react';

const Heading = (props) => (
  <h2 className="heading text-xl text-black-400">{props.heading}</h2>
);

export default Heading;