Last active
January 9, 2016 06:06
-
-
Save haustraliaer/abcd6c9e36f21cb84182 to your computer and use it in GitHub Desktop.
porque no los dos?
This file contains hidden or 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' | |
import delicious from './yu.m.css' | |
import ew from './gross.css' | |
export default React.createClass({ | |
render() { | |
return ( | |
<div className={`hard-tacos ${delicious['soft-tacos']}`}>yaaaaaayyyy!</div> | |
) | |
} | |
}) |
This file contains hidden or 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
export default { | |
loaders: [ | |
{ | |
include: /\.m.css$/, | |
loader: 'style-loader!css-loader?modules&importLoaders=1&localIdentName=[local]__[hash:base64:5]' | |
}, | |
{ | |
include: /\.css$/, | |
loader: 'style-loader!css-loader' | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment