mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05:44 +01:00
24 lines
457 B
JavaScript
24 lines
457 B
JavaScript
//@flow
|
|
import React from "react";
|
|
import { Subtitle } from "@scm-manager/ui-components";
|
|
import {translate} from "react-i18next";
|
|
|
|
type Props = {
|
|
t: string => string
|
|
};
|
|
|
|
class CreateBranch extends React.Component<Props> {
|
|
render() {
|
|
const { t } = this.props;
|
|
|
|
return (
|
|
<>
|
|
<Subtitle subtitle={t("branches.create.title")} />
|
|
<p>Create placeholder</p>
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default translate("repos")(CreateBranch);
|