Skip to content
View bintangmuh's full-sized avatar
🎯
Focusing
🎯
Focusing

Organizations

@infiniteuny
Block or Report

Block or report bintangmuh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. Dark Theme Hooks with Local Storage ... Dark Theme Hooks with Local Storage for Tailwind css
    1
    import { useEffect, useState } from "react"
    2
    
                  
    3
    export function useToggleTheme() {
    4
      const [theme, setTheme] = useState('dark')
    5
    
                  
  2. Rupiah number formatter Rupiah number formatter
    1
    export const convertToRupiah = (angka) => {
    2
      var rupiah = '';		
    3
      var angkarev = angka.toString().split('').reverse().join('');
    4
      for(var i = 0; i < angkarev.length; i++) if(i%3 == 0) rupiah += angkarev.substr(i,3)+'.';
    5
      return rupiah.split('',rupiah.length-1).reverse().join('');