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
<a href="https://app.bookin.online/my_company_name"> | |
<button>Book now</button> | |
</a> |
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
<a href="https://app.bookin.online/my_company_name"> | |
<button style="font-size:32px;background-color:#FFEB3B; color:rgba(0, 0, 0, 0.87);padding:10px;border:none; box-shadow: 0 2px 4px rgba(0, 0, 0, .6);"> | |
BOOK NOW | |
</button> | |
</a> |
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, { Component } from 'react'; | |
import { BrowserRouter as Router, Route, Switch} from 'react-router-dom'; | |
import DeferredComponent from '@ninjapixel/meteor-deferred-component'; | |
const LoadingComponent = () => ( | |
<div className="loading"> | |
<h3>Fetching component...</h3> | |
</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
import React, { Component } from 'react'; | |
import { BrowserRouter as Router, Route, Switch} from 'react-router-dom'; | |
import Test from '../../screens/Test/Test.js'; | |
const HomeScreen = props => ( | |
<div> | |
<header> | |
<h1>The App</h1> | |
</header> | |
<p> |
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 PropTypes from 'prop-types'; | |
import { withStyles, Typography } from '@material-ui/core'; | |
import moment from 'moment'; | |
import _ from 'lodash'; | |
const Test = (props) => { | |
const { classes, name } = props; | |
const lodash = _.get({}, 'x', true); |
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
Show hidden characters
{ | |
"plugins": [["direct-import", { "modules": ["@material-ui/core", "@material-ui/icons"] }], "lodash"] | |
} |
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'; | |
class DeferredComponent extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = {Component: null, loading: true}; | |
} | |
componentDidMount() { | |
this.loadComponent(); |
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
{ | |
"title": "Arrows (right_alt || right_control) v0.2.0", | |
"rules": [ | |
{ | |
"description": "right_alt + e = up", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"modifiers": { |
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
{ | |
"$schema": "https://vega.github.io/schema/vega/v5.json", | |
"width": 900, | |
"height": 560, | |
"padding": {"top": 0, "left": 0, "right": 0, "bottom": 0}, | |
"signals": [ | |
{ | |
"name": "hover", | |
"value": null, | |
"on": [ |
OlderNewer