scrimba
Movie Search App
Create the Search Movies Function
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Create the Search Movies Function
AboutCommentsNotes
Create the Search Movies Function
Expand for more info
searchMovies.js
run
preview
console
import React from "react";

export default function SearchMovies(){
return (
<form className="form">
<label className="label" htmlFor="query">Movie Name</label>
<input className="input" type="text" name="query"
placeholder="i.e. Jurassic Park"/>
<button className="button" type="submit">Search</button>
</form>
)
}
Console
"stuff"
,
/index.html?query=dsfdsf
-6:02