Skip to content

Instantly share code, notes, and snippets.

@amirilovic
Created June 15, 2022 19:46
Show Gist options
  • Save amirilovic/6127f499a43771e35c305faed47c5d4b to your computer and use it in GitHub Desktop.
Save amirilovic/6127f499a43771e35c305faed47c5d4b to your computer and use it in GitHub Desktop.
// importing dependencies
import React from "react";
// exporting
export default function Title({ text }) {
return React.createElement("h1", null, text);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment