blob: c4f4664d6ba7ad34c31d6720f65a95f06b7f163f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import BluetoothDevices from "./bluetoothdevices";
import Media from "./media";
import Networks from "./networks";
import Notifications from "./notifications";
import SideRight from "./sideright";
import Updates from "./updates";
export default () => {
<Notifications />;
<Updates />;
<BluetoothDevices />;
<Networks />;
<Media />;
<SideRight />;
return null;
};
|