Skip to content

Instantly share code, notes, and snippets.

@amirilovic
Last active June 15, 2022 19:45
Show Gist options
  • Save amirilovic/c2a39b46b4ac0925c29a2abbd1e37dae to your computer and use it in GitHub Desktop.
Save amirilovic/c2a39b46b4ac0925c29a2abbd1e37dae to your computer and use it in GitHub Desktop.
// 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