feat(frontend): temporary logs page to clear up confusion about it 404ing

This commit also disables the "Run Now" buttons under Jobs until they actually work

re #272
This commit is contained in:
sct
2020-12-16 01:35:26 +00:00
parent db0a5c44f6
commit d9788c4aa9
4 changed files with 36 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
import { NextPage } from 'next';
import React from 'react';
import SettingsLayout from '../../components/Settings/SettingsLayout';
import SettingsLogs from '../../components/Settings/SettingsLogs';
const SettingsLogsPage: NextPage = () => {
return (
<SettingsLayout>
<SettingsLogs />
</SettingsLayout>
);
};
export default SettingsLogsPage;