“TypeScript React-Provider” Kod odpowiedzi

TypeScript React-Provider

import {} from 'styled-components';
import theme from '../theme';
declare module 'styled-components' {
  type Theme = typeof theme;
  export interface DefaultTheme extends Theme {}
}
Sonya Milyukova

TypeScript React-Provider

// import original module declarations
import 'styled-components';
// and extend them!
declare module 'styled-components' {
  export interface DefaultTheme {
    borderRadius: string;
    colors: {
      main: string;
      secondary: string;
    };
  }
}
Sonya Milyukova

Odpowiedzi podobne do “TypeScript React-Provider”

Pytania podobne do “TypeScript React-Provider”

Więcej pokrewnych odpowiedzi na “TypeScript React-Provider” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu