Created
January 10, 2021 20:45
-
-
Save nitayneeman/17a390e8a9ae62891a1bc24c42af5fee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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