Files
SCM-Manager/scm-ui/src/repos/branches/components/BranchForm.js

17 lines
244 B
JavaScript
Raw Normal View History

//@flow
import React from "react";
type Props = {};
class CreateBranch extends React.Component<Props> {
render() {
return (
<>
<p>Form placeholder</p>
</>
);
}
}
export default translate("repos")(BranchForm);