ColterLena / assignments

Assignments for Suncoast Developers Guild
0 stars 0 forks source link

07 - 01 - Reactified Octocats #24

Closed ColterLena closed 4 years ago

ColterLena commented 4 years ago

The Octodex is a fun way to celebrate a powerful tool we use for development. In that same spirit, recreate this site

You'll identify the main Components on the page and create React components for each, breaking down those Components into smaller ones as needed.

Objectives

Stretch Objectives

Explorer Mode

Adventure Mode

Epic Mode

Additional Resources

ColterLena commented 4 years ago

https://github.com/ColterLena/reactified-octocats

ColterLena commented 4 years ago

Your homework 07 - 01 - Reactified Octocats was marked: Meets Expectations

Yas

“Yas”

gstark commented 4 years ago

Nicely done!

I'd challenge you to incorporate this part of the octocat into your Octocat component as well:

<ul>
              <li className="octocat-name-list-item">#150: Octoqueer</li>
              <li>
                <a href="https://github.com/cameronfoxly">
                  <img src="https://github.com/cameronfoxly.png" />
                </a>
              </li>
              <li>
                <a href="https://github.com/johncreek">
                  <img src="https://github.com/johncreek.png" />
                </a>
              </li>
              <li>
                <a href="https://github.com/tonyjaramillo">
                  <img src="https://github.com/tonyjaramillo.png" />
                </a>
              </li>
            </ul>

I'm accepting this as complete since you demonstrate the goal of the lesson but I invite you to revisit it and see if you can incorporate all of the rendering of the elements of an octocat into your component. Come ask questions if you are unsure.