mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
import React from 'react';
|
|
import Page from './Page';
|
|
|
|
export default function Settings() {
|
|
return (
|
|
<Page>
|
|
<h2>Settings</h2>
|
|
</Page>
|
|
);
|
|
}
|