summaryrefslogtreecommitdiff
path: root/src/modules/popdowns/index.tsx
blob: fb9abf7536e8ab5bfb3ab4fb539794f997fddf4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import BluetoothDevices from "./bluetoothdevices";
import Media from "./media";
import Networks from "./networks";
import Notifications from "./notifications";
import SideLeft from "./sideleft";
import SideRight from "./sideright";
import Updates from "./updates";

export default () => {
    <Notifications />;
    <Updates />;
    <BluetoothDevices />;
    <Networks />;
    <Media />;
    <SideRight />;
    <SideLeft />;

    return null;
};