add mockup root for permissions

This commit is contained in:
Maren Süwer
2018-08-21 15:37:45 +02:00
parent 8a4c48d9f2
commit 4c6ab655ba
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
//@flow
import React from "react";
import type { History } from "history";
type Props = {};
class Permissions extends React.Component<Props> {
render() {
return <div>Permissions will be shown here!</div>;
}
}
export default Permissions;