Skip to content

A basic implementation of redux toolkit into react 18+ version using typscript.

Notifications You must be signed in to change notification settings

mzamann1/redux-toolkit-practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

redux-toolkit-practice

This App is Built using React 18+ version with TypeScript, so there are few changes in index.ts (entry point)

1

// Before import { render } from 'react-dom'; const container = document.getElementById('app'); render(your app, container);

// After import { createRoot } from 'react-dom/client'; const container = document.getElementById('app');

//If you use JS const root = createRoot(container);

//if you use TypeScript const root = createRoot(container!);

root.render(your app);

About

A basic implementation of redux toolkit into react 18+ version using typscript.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published