5 lines
223 B
TypeScript
5 lines
223 B
TypeScript
|
|
// useColorScheme from react-native does not support web currently. You can replace
|
||
|
|
// this with react-native-appearance if you would like theme support on web.
|
||
|
|
export default function useColorScheme() {
|
||
|
|
return 'light';
|
||
|
|
}
|