diff --git a/src/components/App.js b/src/components/App.js
index 4a4af56..b976645 100644
--- a/src/components/App.js
+++ b/src/components/App.js
@@ -12,3 +12,22 @@
// Step 11: Inside the return statement, write a selfclosing tag called MoviesList
// Step 12: Inside the selfclosing tag, give it an attribute called movies, and pass it this.state.movies inside a set of curly bracket.
// Step 13: Outside the class, export the App class as a default.
+import React, { Component } from 'react';
+import { render } from 'react-dom';
+import MoviesList from './MoviesList';
+
+class App extends Component {
+ constructor() {
+ super();
+ this.state = {
+ movies: ['Godzilla (1998)', 'Jurrasic Park', 'Titanic', 'Pulp Fiction'],
+ };
+ }
+ render() {
+ return (
+