mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 06:55:47 +01:00
17 lines
244 B
JavaScript
17 lines
244 B
JavaScript
|
|
//@flow
|
||
|
|
import React from "react";
|
||
|
|
|
||
|
|
type Props = {};
|
||
|
|
|
||
|
|
class CreateBranch extends React.Component<Props> {
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<p>Form placeholder</p>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default translate("repos")(BranchForm);
|