add PageFooter

yhy
FrozenArcher 2024-03-05 19:50:57 +08:00
parent f0fe2f6abf
commit eb7623917c
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,3 @@
export default {
component: true,
};

View File

@ -0,0 +1,12 @@
import { View } from '@tarojs/components';
import { AtDivider } from 'taro-ui';
export default () => {
const blankHeight = 120;
return (
<View>
<AtDivider content='EVA Notify' fontColor='#dddddd' lineColor='#dddddd' />
<View style={{ height: blankHeight }}></View>
</View>
);
};