Files
SCM-Manager/scm-ui/src/permissions/containers/Permissions.js

14 lines
248 B
JavaScript
Raw Normal View History

2018-08-21 15:37:45 +02:00
//@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;