Skip to content

Instantly share code, notes, and snippets.

@robertwbradford
Created August 14, 2020 19:36
Show Gist options
  • Save robertwbradford/879507fcac2f79149ea4edbea35d2b34 to your computer and use it in GitHub Desktop.
Save robertwbradford/879507fcac2f79149ea4edbea35d2b34 to your computer and use it in GitHub Desktop.
React Slot Pattern
const Layout = ({ slot1, slot2 }) => {
return (
<div>
<div>{slot1}</div>
<div>{slot2}</div>
</div>
);
};
const MyApp = () => <Layout slot1={<p>Hello</p>} slot2={<p>world</p>} />;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment