feat: initial user list (no edit/delete yet) and job schedules

This commit is contained in:
sct
2020-11-05 10:45:51 +00:00
parent 320432657e
commit 24a0423f3b
10 changed files with 213 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
import React from 'react';
import type { NextPage } from 'next';
import UserList from '../../components/UserList';
const UsersPage: NextPage = () => {
return <UserList />;
};
export default UsersPage;