mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 00:15:44 +01:00
18 lines
261 B
JavaScript
18 lines
261 B
JavaScript
|
|
// @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!"
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|