Skip to content

Instantly share code, notes, and snippets.

@talatkuyuk
Created February 11, 2024 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talatkuyuk/77add43c41fdfb197244ab9a43cba9d2 to your computer and use it in GitHub Desktop.
Save talatkuyuk/77add43c41fdfb197244ab9a43cba9d2 to your computer and use it in GitHub Desktop.
Simple transpiled react component
import React from "react";
const Bar = () => {
return React.createElement(
"div",
{
className: "bar-content",
style: { color: "red", marginTop: "1rem" },
},
"Hi from Bar component"
);
};
export default Bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment