Define the LandingSceeen
Now let’s add the Header and Video components to a screen called LandingScreen.- Create a new folder under
srccalledscreens, and within it create a file calledLandingScreen.tsx.
- Import React, and the Header and VideoCard components in
LandingScreen.tsx - Create and export a component called “LandingScreen”, which returns the Header and VideoCard components.
- Wrap the components in an empty fragment.
LandingScreen.tsx code should look like this:
Render the LandingScreen
Now that we have our LandingScreen defined, we need to update the app to use it.- Open
App.tsxand import the LandingScreen. - Remove the import statements for Header and VideoCard, as they are now rendered in the LandingScreen screen.
- Remove the Header and VideoCard components and the empty tags in the return statement, and replace them with the LandingScreen.
App.tsx file should now look like this:

