Skip to content

Instantly share code, notes, and snippets.

@tannerlinsley
Last active October 13, 2020 13:33
Show Gist options
  • Save tannerlinsley/1fcb7fa2886cc5c1e9493edfaf9f76d5 to your computer and use it in GitHub Desktop.
Save tannerlinsley/1fcb7fa2886cc5c1e9493edfaf9f76d5 to your computer and use it in GitHub Desktop.
// Source
const MyCompSource = ''
// @source MyCompSource
const MyComp = (
<div>
Hello there!
</div>
)
// @endSource
// =======================================
// Transpiled
const MyCompSource = `const MyComp = (
<div>
Hello there!
</div>
)`
const MyComp = (
<div>
Hello there!
</div>
)
@sahilrajput03
Copy link

Can you please exlain a bit what this is for?
Like what experiment can I do with that to enlighten myself ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment