summaryrefslogtreecommitdiff
path: root/src/modules/popdowns/index.tsx
blob: 44668a83430c78c76b88f35cca1e57a8fe9fd3ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import BluetoothDevices from "./bluetoothdevices";
import Networks from "./networks";
import Notifications from "./notifications";
import Updates from "./updates";

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

    return null;
};