mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 15:35:49 +01:00
14 lines
248 B
JavaScript
14 lines
248 B
JavaScript
|
|
//@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;
|