mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-11 16:05:44 +01:00
structured branch code and translations
This commit is contained in:
18
scm-ui/src/repos/branches/containers/CreateBranch.js
Normal file
18
scm-ui/src/repos/branches/containers/CreateBranch.js
Normal file
@@ -0,0 +1,18 @@
|
||||
// @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;
|
||||
Reference in New Issue
Block a user