mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-09 03:58:33 -06:00
13 lines
338 B
TypeScript
13 lines
338 B
TypeScript
import React from "react";
|
|
import { ScrollView } from "tamagui";
|
|
import AccountDetails from "./helpers/account-details";
|
|
import SignOut from "./helpers/sign-out";
|
|
|
|
export default function Settings(): React.JSX.Element {
|
|
return (
|
|
<ScrollView>
|
|
<AccountDetails />
|
|
<SignOut />
|
|
</ScrollView>
|
|
)
|
|
} |