Note: Apply TDD as much as you can.
- Implement React Router on your project.
- Refactor your code to navigate across your sections.
- Create the Login View
- 3.1 It should display a form with a username and password fields.
Note: Apply TDD as much as you can.
Thank you for participating in the 2021 React Bootcamp! Here you will find the instructions to complete your project.
The purpose of this assignment is for you to demonstrate your React skills. This is your chance to show off everything you've learned during our bootcamp and earn your diploma.
The idea is that you build and deliver an entire React application on your own. We don't want to limit you by providing some "fill-in-the-blanks" exercises, but instead ask you to build it from scratch. We hope you find this project challenging and engaging.
The goal is to create a YouTube client app.
import { SanityDocumentStub } from '@sanity/client' | |
import { algolia, sanity } from '~/libs' | |
import { NextApiRequest, NextApiResponse } from 'next' | |
import indexer from 'sanity-algolia' | |
const handler = (req: NextApiRequest, res: NextApiResponse) => { | |
if (req.headers['content-type'] !== 'application/json') { | |
res.status(400) | |
res.json({ message: 'Bad request' }) |