7 lines
268 B
TypeScript
7 lines
268 B
TypeScript
// The useColorScheme value is always either light or dark, but the built-in
|
|
// type suggests that it can be null. This will not happen in practice, so this
|
|
// makes it a bit easier to work with.
|
|
export function useColorScheme(): 'light' | 'dark' {
|
|
return 'dark';
|
|
}
|