mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-03-24 02:08:12 +00:00
all imports
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
/*eslint max-lines: ["warn", {"max": 500, "skipBlankLines": true, "skipComments": true}]*/
|
||||
require('./lockTools.less');
|
||||
import React, {createClass} from 'react';
|
||||
import './lockTools.less';
|
||||
import React from 'react';
|
||||
import createReactClass from 'create-react-class';
|
||||
|
||||
import request from '../../homebrew/utils/request-middleware.js';
|
||||
|
||||
const LockTools = createClass({
|
||||
const LockTools = createReactClass({
|
||||
displayName : 'LockTools',
|
||||
getInitialState : function() {
|
||||
return {
|
||||
@@ -54,7 +55,7 @@ const LockTools = createClass({
|
||||
}
|
||||
});
|
||||
|
||||
const LockBrew = createClass({
|
||||
const LockBrew = createReactClass({
|
||||
displayName : 'LockBrew',
|
||||
getInitialState : function() {
|
||||
// Default values
|
||||
@@ -182,7 +183,7 @@ const LockBrew = createClass({
|
||||
}
|
||||
});
|
||||
|
||||
const LockTable = createClass({
|
||||
const LockTable = createReactClass({
|
||||
displayName : 'LockTable',
|
||||
getDefaultProps : function() {
|
||||
return {
|
||||
@@ -272,7 +273,7 @@ const LockTable = createClass({
|
||||
}
|
||||
});
|
||||
|
||||
const LockLookup = createClass({
|
||||
const LockLookup = createReactClass({
|
||||
displayName : 'LockLookup',
|
||||
getDefaultProps : function() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user