Skip to content

Instantly share code, notes, and snippets.

@newerton
Created September 15, 2022 17:58
Show Gist options
  • Save newerton/cedd6a87525488482aa1a6d2e7e73d21 to your computer and use it in GitHub Desktop.
Save newerton/cedd6a87525488482aa1a6d2e7e73d21 to your computer and use it in GitHub Desktop.
Apply Open-closed principle (OCP)
const Header = ({ children }) => (
<header>
<Logo />
<Actions>
{children}
</Actions>
</header>
)
const HomePage = () => (
<>
<Header>
<Link to="/dashboard">Go to dashboard</Link>
</Header>
<OtherHomeStuff />
</>
)
const DashboardPage = () => (
<>
<Header>
<Link to="/events/new">Create event</Link>
</Header>
<OtherDashboardStuff />
</>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment