Skip to content

Instantly share code, notes, and snippets.

@amirilovic
Last active June 15, 2022 19:42
Show Gist options
  • Save amirilovic/5fed8af4184d60ecad232be11151cbdc to your computer and use it in GitHub Desktop.
Save amirilovic/5fed8af4184d60ecad232be11151cbdc to your computer and use it in GitHub Desktop.
// importing dependencies
define(['react'], function (React) {
// exporting
return 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