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