Production Level Context with Next.js (Typescript) ๐ฅ
Connect ๐
Xam
LinkedIn
Setup
First, let's create a file for defining the context (let's call it app-context.ts):
import React from "react";
export interface ContextState {
name: string;
}
export interface ContextDispatch {
setName: React.D...
codexam.hashnode.dev2 min read