mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-07 14:05:44 +01:00
12 lines
245 B
JavaScript
12 lines
245 B
JavaScript
//@flow
|
|
import React from "react";
|
|
import Button, { type ButtonProps } from "./Button";
|
|
|
|
class AddButton extends React.Component<ButtonProps> {
|
|
render() {
|
|
return <Button color="default" {...this.props} />;
|
|
}
|
|
}
|
|
|
|
export default AddButton;
|