1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Added reduced motion

This commit is contained in:
Zhiyuan Zheng
2021-03-27 00:02:32 +01:00
parent d490cae955
commit b0b7a7567b
10 changed files with 127 additions and 47 deletions

View File

@ -11,7 +11,7 @@ type ContextType = {
setTheme: (theme: 'light' | 'dark') => void
}
export const ManageThemeContext = createContext<ContextType>({
const ManageThemeContext = createContext<ContextType>({
mode: 'light',
theme: getTheme('light'),
setTheme: () => {}