Skip to content

Instantly share code, notes, and snippets.

View luisabarca's full-sized avatar
🏠
Working from home

Luis Abarca luisabarca

🏠
Working from home
View GitHub Profile
@jparciga
jparciga / README.md
Last active October 11, 2021 01:45
Mini-Challenge 5: Routing

Mini-Challenge 5: Routing

The Challenge

Note: Apply TDD as much as you can.

  1. Implement React Router on your project.
  2. Refactor your code to navigate across your sections.
  3. Create the Login View
  • 3.1 It should display a form with a username and password fields.
@villacoder
villacoder / README.md
Last active August 12, 2021 16:11
Wizeline Academy - 2021 React Bootcamp Project

Wizeline Academy - 2021 React Bootcamp Project

Introduction

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' })