Professional-React-and-Next.js-Course icon indicating copy to clipboard operation
Professional-React-and-Next.js-Course copied to clipboard

This repo contains everything you need as a student of the Professional React & Next.js Course by ByteGrad.com

Results 18 Professional-React-and-Next.js-Course issues
Sort by recently updated
recently updated
newest added

Imported useSearchTextContext to final-code for the rmtdev project :)

The data fetch url is missing from the petSoft ressource folder. [https://bytegrad.com/course-assets/projects/petsoft/api/pets] Also there is a file related to the evento project. [evento-model.txt]

1. Since we use Zustand to manage the state, there is no need to pass props to AddItemForm and Counter, we can just use Zustand in them directly. 2. It's...

1. Since we use Zustand to manage the state, there is no need to pass props to FeedbackForm and HashtagItem, we can just use Zustand in them directly. 2. It's...

On buy page, click on the buy button will not redirect to stripe page unless I refresh the page and then click buy. Second problem: In the auth-edge.ts file, I...

cn is what we just learned and it is the perfect case to use it. The only thing we have to do is to change SearchForm to accept props and...

Container.tsx ``` import { useState } from "react"; import Stats from "./Stats"; import Textarea from "./Textarea"; import { FACEBOOK_MAX_CHARACTERS, INSTAGRAM_MAX_CHARACTERS, } from "../lib/constants"; export default function Container() { const [text,...

All buttons are not showing because the text is not passed, can be passed as children. ButtonGroup ``` {secondaryButtons.map((button) => ( {button.text} ))} ``` ``` export default function Button({ onClick,...