From eb7623917ce83461c97461665e85904d8b51d288 Mon Sep 17 00:00:00 2001 From: FrozenArcher Date: Tue, 5 Mar 2024 19:50:57 +0800 Subject: [PATCH] add PageFooter --- src/components/PageFooter/PageFooter.config.ts | 3 +++ src/components/PageFooter/PageFooter.scss | 0 src/components/PageFooter/PageFooter.tsx | 12 ++++++++++++ 3 files changed, 15 insertions(+) create mode 100644 src/components/PageFooter/PageFooter.config.ts create mode 100644 src/components/PageFooter/PageFooter.scss create mode 100644 src/components/PageFooter/PageFooter.tsx diff --git a/src/components/PageFooter/PageFooter.config.ts b/src/components/PageFooter/PageFooter.config.ts new file mode 100644 index 0000000..fd50080 --- /dev/null +++ b/src/components/PageFooter/PageFooter.config.ts @@ -0,0 +1,3 @@ +export default { + component: true, +}; diff --git a/src/components/PageFooter/PageFooter.scss b/src/components/PageFooter/PageFooter.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/components/PageFooter/PageFooter.tsx b/src/components/PageFooter/PageFooter.tsx new file mode 100644 index 0000000..b707b94 --- /dev/null +++ b/src/components/PageFooter/PageFooter.tsx @@ -0,0 +1,12 @@ +import { View } from '@tarojs/components'; +import { AtDivider } from 'taro-ui'; + +export default () => { + const blankHeight = 120; + return ( + + + + + ); +};