mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05:44 +01:00
add route to set password component
This commit is contained in:
17
scm-ui/src/users/components/SetUserPassword.js
Normal file
17
scm-ui/src/users/components/SetUserPassword.js
Normal file
@@ -0,0 +1,17 @@
|
||||
// @flow
|
||||
import React from "react";
|
||||
import type { User } from "@scm-manager/ui-types";
|
||||
|
||||
type Props = {
|
||||
user: User
|
||||
};
|
||||
|
||||
export default class SetUserPassword extends React.Component<Props> {
|
||||
|
||||
render() {
|
||||
|
||||
return (
|
||||
"Hey, Change Password!"
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user