from this
import Head from '~components/Commons/Head';
require('~images/test.jpg')
to this
| // http://css3.bradshawenterprises.com/blog/why-sass/ | |
| // _constants.scss | |
| $brand-color: rgb(255,0,0); | |
| $accent-color: darken($brand-color, 10); // That is, 10% darker than the brand-color. | |
| $body-font: "Helvetica Neue", Arial, sans-serif; | |
| $header-font: "Segoe UI", "Myriad Pro", $body-font; | |
| $width: 960px; |
| // extension for jQuery | |
| (function (root) { | |
| if (root.Enumerable == null) { | |
| throw new Error("can't find Enumerable. linq.jquery.js must load after linq.js"); | |
| } | |
| if (root.jQuery == null) { | |
| throw new Error("can't find jQuery. linq.jquery.js must load after jQuery"); | |
| } |
from this
import Head from '~components/Commons/Head';
require('~images/test.jpg')
to this
| ... | |
| <permission | |
| android:name="android.permission.INTERACT_ACROSS_USERS_FULL" | |
| android:protectionLevel="signature" /> | |
| ... | |
| <activity android:name=".UnlockScreenActivity" /> |
| { | |
| "editor.minimap.enabled": false, | |
| "html.format.wrapLineLength": 0 | |
| } |
| <div class="container-fluid h-100 d-flex align-items-stretch bg-red"> | |
| <div class="row"> | |
| <div class="col-12 d-flex align-items-stretch bg-orange"> | |
| <div class="row"> | |
| <div class="col-3 bg-green"> | |
| <div class="row d-flex flex-column h-100"> | |
| <div class="col-12 bg-pink">filter</div> | |
| <div class="col-12 bg-blue"> | |
| <table class="table"> | |
| <thead> |
| (function() { | |
| console.clear() | |
| const a = () => { | |
| return Promise.resolve({ value: 'a' }) | |
| } | |
| const b = () => { | |
| return Promise.resolve({ value: 'b' }) | |
| } |
| console.clear(); | |
| var data = []; | |
| for (var i = 1; i <= 15; i++) { | |
| var uuid = faker.random.uuid(); | |
| data.push({ | |
| id: i, | |
| name: faker.name.findName(), | |
| email: faker.internet.email(), |
| ul { margin: 0; padding: 0; } | |
| ul li { list-style: none; margin-bottom: 8px; } | |
| hr { border: 0; border-top: solid 1px #d9d9d9; } |
| class Movie { | |
| constructor() { | |
| this.title = ''; | |
| } | |
| getTitle() { | |
| return this.title; | |
| } | |
| setTitle(title) { | |
| this.title = title; | |
| } |