12 lines
254 B
TypeScript
12 lines
254 B
TypeScript
import React from 'react';
|
|
import AppShell from '../components/AppShell';
|
|
import SettingsContent from '../components/SettingsContent';
|
|
|
|
export default function SettingsScreen() {
|
|
return (
|
|
<AppShell>
|
|
<SettingsContent />
|
|
</AppShell>
|
|
);
|
|
}
|