http://stackoverflow.com/questions/37200080/how-to-export-imported-object-in-es6
import d, {obj} from '...';
export {obj, d};
// or
export {obj as name1, d as name2};
| <!doctype html> | |
| <html lang="sv"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>KAN Grid: FRIENDS</title> | |
| <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900" rel="stylesheet"> | |
| <style type="text/css"> | |
| body { | |
| margin: 0; | |
| font-family: 'Source Sans Pro', sans-serif; |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
http://stackoverflow.com/questions/37200080/how-to-export-imported-object-in-es6
import d, {obj} from '...';
export {obj, d};
// or
export {obj as name1, d as name2};
| @media screen and (-webkit-min-device-pixel-ratio: 0) | |
| input[type='text'] { | |
| color: salmon; | |
| text-shadow: 0 0 0 teal; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| } |