React Code Snippets

Components and utilities for modern React applications.

const fileToBase64 = (file) =>
	new Promise((resolve, reject) => {
		const reader = new FileReader();
		reader.readAsDataURL(file);
		reader.onload = () => resolve(reader.result);
		reader.onerror = reject;
	});

fileToBase64(file) // any type of image, zip, txt or another file that want

Convert File to Base64 String

Convert any type of file to basae64 stri...
.Toastify__toast-container {
  z-index: 200000;
}

React Toast shows behind modal Issue

Add this css code to your global css fil...
const [isOn, setIsOn] = useState(false);

const toggle = () => setIsOn(prev => !prev);

Toggle Boolean State in Reactjs or Nextjs

Simple toggle hook for React state....