scrimba
Move Components into Separate Files
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

Move Components into Separate Files
AboutCommentsNotes
Move Components into Separate Files
Expand for more info
index.js
run
preview
console
import React from "react"
import ReactDOM from "react-dom"

function MyInfo() {
return (
<div>
<h1>Bob Ziroll</h1>
<p>This is a paragraph about me...</p>
<ul>
<li>Thailand</li>
<li>Japan</li>
<li>Nordic Countries</li>
</ul>
</div>
)
}

ReactDOM.render(<MyInfo />, document.getElementById("root"))
Console
index.html
-5:20