added create branch trans, fixed branchtable trans, moved branches modules

This commit is contained in:
Florian Scholdei
2019-04-02 09:27:34 +02:00
parent d8a33e0fc2
commit db0a835bca
12 changed files with 35 additions and 13 deletions

View File

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