mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
56eff0d9ed
The React dev tools don’t seem to be able to automatically pick up the displayName when using createClass from within another function, so it’s added here to give clarity when debugging.
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import AclButton from './acl_button';
|
|
|
|
import { getLangText } from '../../../utils/lang_utils';
|
|
|
|
export default AclButton({
|
|
action: 'acl_consign',
|
|
displayName: 'ConsignButton',
|
|
title: getLangText('Consign artwork'),
|
|
tooltip: getLangText('Have someone else sell the artwork')
|
|
});
|