We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d2cd8e commit 2438dbaCopy full SHA for 2438dba
src/preferences/pages/swift.ts
src/preferences/pages/swift.tsx
@@ -0,0 +1,26 @@
1
+import { Divider } from "@mui/joy";
2
+import SDKMenu from "../../components/SDKMenu";
3
+import SwiftMenu from "../../components/SwiftMenu";
4
+import { createCustomPreferencePage } from "../helpers";
5
+
6
+export const swiftPage = createCustomPreferencePage(
7
+ "swift",
8
+ "Swift",
9
+ () => (
10
+ <div
11
+ style={{
12
+ display: "flex",
13
+ flexDirection: "column",
14
+ gap: "var(--padding-md)",
15
+ }}
16
+ >
17
+ <SwiftMenu />
18
+ <Divider style={{ marginLeft: "-20px" }} />
19
+ <SDKMenu />
20
+ </div>
21
+ ),
22
+ {
23
+ description: "Manage your swift toolchains",
24
+ category: "swift",
25
+ }
26
+);
0 commit comments