Skip to content

Instantly share code, notes, and snippets.

@AhmetEnesKCC
Created March 19, 2022 13:45
Show Gist options
  • Save AhmetEnesKCC/dca8580d7ca62edf448a968b72029280 to your computer and use it in GitHub Desktop.
Save AhmetEnesKCC/dca8580d7ca62edf448a968b72029280 to your computer and use it in GitHub Desktop.
website theme related to system - custom hook using
import React from "react";
import {useSetThemeRelatedToSystem }
export default App = () => {
const {theme} = useSetThemeRelatedToSystem();
return <div> {theme ? theme : "getting system theme" } </div>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment