Created
June 15, 2022 19:46
-
-
Save amirilovic/6127f499a43771e35c305faed47c5d4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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