You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
383 B
17 lines
383 B
|
1 month ago
|
/**
|
||
|
|
* Components 统一导出
|
||
|
|
*/
|
||
|
|
|
||
|
|
// 主题组件
|
||
|
|
export { ThemedText, ThemedView, Text, View, useThemeColor } from './Themed';
|
||
|
|
export type { ThemedTextProps, ThemedViewProps, TextProps, ViewProps } from './Themed';
|
||
|
|
|
||
|
|
// 主题演示
|
||
|
|
export { ThemeDemo } from './ThemeDemo';
|
||
|
|
|
||
|
|
// 工具组件
|
||
|
|
export { ExternalLink } from './ExternalLink';
|
||
|
|
export { MonoText } from './StyledText';
|
||
|
|
|
||
|
|
|