Skip to content

Instantly share code, notes, and snippets.

@Cynnah
Created July 29, 2019 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cynnah/d2e8bc6d2b84bd15042b9fa0c9cbb989 to your computer and use it in GitHub Desktop.
Save Cynnah/d2e8bc6d2b84bd15042b9fa0c9cbb989 to your computer and use it in GitHub Desktop.
import React from 'react'
const Film = (props) => {
return (
<div>
<h3>{props.title}</h3>
<p>{props.opening_crawl}</p><br />
<p>{props.director}</p>
<p>{props.producer}</p>
<p>{props.release_date}</p>
<p>{props.characters}</p>
<p>{props.planets}</p>
</div>
)
}
export default Film;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment