Skip to content

Instantly share code, notes, and snippets.

View pricklywiggles's full-sized avatar
💭
If less is more then what is nothing?

Gustavo Gallegos pricklywiggles

💭
If less is more then what is nothing?
View GitHub Profile
@drnic
drnic / Hello.tsx
Created June 15, 2023 23:37
In Rails apps using StimulusJS, load React components found at app/javascript/react/*/index.tsx, and make them available via Ruby helper react(name)
import React from "react";
const Hello = ({ name }: { name: string }) => <span>Hello {name}</span>;
Hello.defaultProps = { name: "World" }
export default Hello;