Created
October 8, 2014 22:19
-
-
Save jordaaash/8e30a4ebfed1bea7b4e7 to your computer and use it in GitHub Desktop.
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
'use strict'; | |
var classes = require('./classes'), | |
ClassName; | |
ClassName = function (className) { | |
return { | |
getClassName: function () { | |
return classes(className, this.props.className); | |
} | |
}; | |
}; | |
module.exports = ClassName; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment