add PageFooter
parent
f0fe2f6abf
commit
eb7623917c
|
|
@ -0,0 +1,3 @@
|
||||||
|
export default {
|
||||||
|
component: true,
|
||||||
|
};
|
||||||
|
|
@ -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>
|
||||||
|
);
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue