We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 001eff8 commit 7f6b4aeCopy full SHA for 7f6b4ae
components/tabbar/demo.tsx
@@ -19,7 +19,7 @@ interface T {
19
c9e6df49: string;
20
}
21
22
-const tabbarDemo = () => {
+const TabbarDemo = () => {
23
const [translated] = useTranslate<T>({
24
'zh-CN': {
25
ce5c5446: '基础用法',
@@ -169,4 +169,4 @@ const tabbarDemo = () => {
169
);
170
};
171
172
-export default tabbarDemo;
+export default TabbarDemo;
components/table/demo.tsx
@@ -24,7 +24,7 @@ interface T {
sorting: string;
26
27
-const tableDemo = () => {
+const TableDemo = () => {
28
29
30
basic: '基础用法',
@@ -307,4 +307,4 @@ const tableDemo = () => {
307
308
309
310
-export default tableDemo;
+export default TableDemo;
0 commit comments