diff options
Diffstat (limited to 'src/modules/popdowns/index.tsx')
| -rw-r--r-- | src/modules/popdowns/index.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/modules/popdowns/index.tsx b/src/modules/popdowns/index.tsx new file mode 100644 index 0000000..db3245b --- /dev/null +++ b/src/modules/popdowns/index.tsx @@ -0,0 +1,9 @@ +import Notifications from "./notifications"; +import Updates from "./updates"; + +export default () => { + <Notifications />; + <Updates />; + + return null; +}; |