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

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

    return null;
};