11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import AppThemeProvider from './ThemeProvider';
|
|
import { APP_THEME_LTR, APP_THEME_RTL } from './theme';
|
|
import { getDirection } from './direction';
|
|
|
|
export {
|
|
APP_THEME_LTR,
|
|
APP_THEME_RTL,
|
|
AppThemeProvider as ThemeProvider,
|
|
getDirection,
|
|
};
|