Created
January 10, 2021 20:47
-
-
Save nitayneeman/8595652a240ed64b4cd5770780d04df3 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 FirstComponent from './FirstComponent.client.js'; | |
import SecondComponent from './SecondComponent.client.js'; | |
function MyServerComponent(props) { | |
const shouldDisplaySecondComponent = ...; // Some logic | |
return shouldDisplaySecondComponent ? <SecondComponent/> : <FirstComponent/>; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment