Skip to content

Instantly share code, notes, and snippets.

@nitayneeman
Created January 10, 2021 20:43
Show Gist options
  • Save nitayneeman/79044d099605c0f1679cdde35fdeb04a to your computer and use it in GitHub Desktop.
Save nitayneeman/79044d099605c0f1679cdde35fdeb04a to your computer and use it in GitHub Desktop.
import MyClientComponent from 'MyComponent.client';
function MyServerComponent(props) {
// For instance, the data could be fetched directly from a database
const { data } = props;
return <MyClientComponent data={data} />;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment