scrimba
Styled Components
Setting up from scratch - Project work
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

Setting up from scratch - Project work
AboutCommentsNotes
Setting up from scratch - Project work
Expand for more info
index.js
run
preview
console
import React from 'react'
import ReactDOM from 'react-dom'

class Main extends React.Component {
render() {
return (
<>
<h1>Progress Tracker</h1>
<div>
<div className="section">
<div className="weekday-title">M</div>
</div>
<div className="section">
<div className="weekday-title">T</div>
</div>
<div className="section">
<div className="weekday-title">W</div>
</div>
<div className="section">
<div className="weekday-title">T</div>
</div>
<div className="section">
<div className="weekday-title">F</div>
</div>
<div className="section">
<div className="weekday-title">S</div>
</div>
<div className="section">
<div className="weekday-title">S</div>
</div>
</div>
</>
);
}
}

ReactDOM.render(<Main />, document.getElementById('root'))
Console
/index.html
-6:51