blob: f7b5e4fa0eabddc8076edb37e4a527ba1016dd48 [file] [log] [blame]
simon26e79f72022-10-05 22:16:08 -04001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040018import { Container } from '@mui/material';
simon07b4eb02022-09-29 17:50:26 -040019
simon07b4eb02022-09-29 17:50:26 -040020import AccountPreferences from '../components/AccountPreferences';
21import Header from '../components/Header';
Adrien Béraud6ecaa402021-04-06 17:37:25 -040022
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040023export default function AccountSettings() {
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040024 // TODO: Improve component and sub-components UI.
Adrien Béraud150b4782021-04-21 19:40:59 -040025 return (
26 <Container maxWidth="sm">
27 <Header />
simon416d0792022-11-03 02:46:18 -040028 <AccountPreferences />
Adrien Béraud150b4782021-04-21 19:40:59 -040029 </Container>
simond47ef9e2022-09-28 22:24:28 -040030 );
Michelle Sepkap Simee580f422022-10-31 23:27:04 -040031}