useColorScheme.web.ts 223 B

12345
  1. // useColorScheme from react-native does not support web currently. You can replace
  2. // this with react-native-appearance if you would like theme support on web.
  3. export default function useColorScheme() {
  4. return 'light';
  5. }