Last active
June 15, 2022 19:45
-
-
Save amirilovic/c2a39b46b4ac0925c29a2abbd1e37dae 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 | |
const React = require('react'); | |
//exporting | |
module.exports = 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