Skip to content

Instantly share code, notes, and snippets.

@nitayneeman
Created January 10, 2021 20:45
Show Gist options
  • Save nitayneeman/17a390e8a9ae62891a1bc24c42af5fee to your computer and use it in GitHub Desktop.
Save nitayneeman/17a390e8a9ae62891a1bc24c42af5fee to your computer and use it in GitHub Desktop.
import db from 'db.server';
import MyClientComponent from 'MyComponent.client';
function MyServerComponent(props) {
const { id } = props;
const dataById = db.data.get(id);
return <MyClientComponent data={dataById} />;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment