This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var StyleToString = function (styleString, styleObj) { | |
var style = ''; | |
if (typeof styleString === 'string') { | |
style = style + styleString; | |
} | |
if (typeof styleString === 'object') { | |
for (var styleStringProperty in styleString) { | |
if (styleString[styleStringProperty]) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
export default WrapperComponent => { | |
const _logType = { | |
warn: "warn", | |
error: "error", | |
info: "info" | |
}; | |
let _logging = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.js-global-actions li#global-nav-home a { | |
border-bottom-color: #e8e800; | |
} | |
.global-nav-inner { | |
background: black; | |
} | |
.global-nav { | |
border-bottom-color: #e8e800; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
export default class App extends React.Component { | |
state = {}; | |
onChange = event => { | |
this.setState({ [event.target.name]: event.target.value }); | |
}; | |
renderParent() { |