import React from "react";

const SuperCoolComponent = ({ children }) => {
    return <h1> {children}</h1>;
};

export { SuperCoolComponent };
