Skip to content

Instantly share code, notes, and snippets.

@raglan-road
Last active July 19, 2019 14:51
Show Gist options
  • Save raglan-road/d42e4e39d0b104dfe2562f001d978f8d to your computer and use it in GitHub Desktop.
Save raglan-road/d42e4e39d0b104dfe2562f001d978f8d to your computer and use it in GitHub Desktop.
// Some file, like layout-constants.js
export default BASE_PADDING = '1';
export default BASE_UNIT = 'rem';
// Another file, like blahcomponent.jsx
import * as CSS from 'layout-constants';
const Componet = css(`
margin: 1.5*${BASE_PADDING}${BASE_UNIT},
padding: ${BASE_PADDING}${BASE_UNIT}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment