Skip to content

Instantly share code, notes, and snippets.

@binhtran04
Created April 3, 2020 13:12
Show Gist options
  • Save binhtran04/1b3349726daf811a7bc3da81d6e8e18b to your computer and use it in GitHub Desktop.
Save binhtran04/1b3349726daf811a7bc3da81d6e8e18b to your computer and use it in GitHub Desktop.
Movies App component
import React from 'react';
import { Movies } from './Movies';
import { MoviesProvider } from './MoviesContext';
import { NewMovie } from './NewMovie';
import './App.scss';
export const App = () => {
return (
<div className="App">
<MoviesProvider>
<NewMovie />
<Movies />
</MoviesProvider>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment