Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created April 5, 2024 19:46
Show Gist options
  • Save PaulieScanlon/a5e0657e7a1dd79bbac2320782700a53 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/a5e0657e7a1dd79bbac2320782700a53 to your computer and use it in GitHub Desktop.
Example Waku Parent Component
// src/components/parent-component.jsx
import ChildComponent from './child-component.js';
const ParentComponent = () => {
return <ChildComponent />;
};
export default ParentComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment