umami/components/Settings.js

11 lines
157 B
JavaScript
Raw Normal View History

2020-08-05 07:45:05 +02:00
import React from 'react';
2020-08-06 04:04:02 +02:00
import Page from './Page';
2020-08-05 07:45:05 +02:00
export default function Settings() {
return (
2020-08-06 04:04:02 +02:00
<Page>
2020-08-05 07:45:05 +02:00
<h2>Settings</h2>
2020-08-06 04:04:02 +02:00
</Page>
2020-08-05 07:45:05 +02:00
);
}