Skip to content

Instantly share code, notes, and snippets.

@rizqyhi
Created December 8, 2024 16:26
Show Gist options
  • Save rizqyhi/bdbce57ab92727a7a419b0ec8a8ded4a to your computer and use it in GitHub Desktop.
Save rizqyhi/bdbce57ab92727a7a419b0ec8a8ded4a to your computer and use it in GitHub Desktop.
React Renderer Experiment
import { createElement } from "https://esm.sh/react";
export default Counter({children}) {
return createElement(
'h1',
{ className: 'greeting' },
children
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment