2019-03-29 10:22:54 +01:00
|
|
|
//@flow
|
2019-03-28 17:09:59 +01:00
|
|
|
import React from "react";
|
|
|
|
|
import { Subtitle } from "@scm-manager/ui-components";
|
2019-03-29 10:22:54 +01:00
|
|
|
import {translate} from "react-i18next";
|
2019-03-28 17:09:59 +01:00
|
|
|
|
2019-03-29 10:22:54 +01:00
|
|
|
type Props = {
|
|
|
|
|
t: string => string
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CreateBranch extends React.Component<Props> {
|
2019-03-28 17:09:59 +01:00
|
|
|
render() {
|
|
|
|
|
const { t } = this.props;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<Subtitle subtitle={t("branches.create.title")} />
|
|
|
|
|
<p>Create placeholder</p>
|
|
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-29 10:22:54 +01:00
|
|
|
export default translate("repos")(CreateBranch);
|