| Name | Henge Docks - Horizontal Docking Station | Henge Docks - Tethered Dock | TS3 Lite CalDigit | TS3 CalDigit | Thunderbolt 3 Express Dock HD | Plugable TB3 | Elgato TB 3 Dock | OWC Thunderbolt 3 Dock | |----------------|--
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
// now no problem :D |
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 const BOTTOM_LEFT = ` | |
┌──────────────┐ | |
│ │ | |
├──────┐ │ | |
│■■■■■■│ │ | |
│■■■■■■│ │ | |
└──────┴───────┘ | |
` |
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
// @flow | |
import React from "react" | |
import Hoverable from "../../modules/Hoverable" | |
import Focusable from "../../modules/Focusable" | |
import Touchable from "../../modules/Touchable" | |
type PropsType = { | |
children?: React$Element<any>, |
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 path from "path" | |
import webpack from "webpack" | |
import ExtractTextPlugin from "extract-text-webpack-plugin" | |
import { phenomicLoader } from "phenomic" | |
import PhenomicLoaderFeedWebpackPlugin | |
from "phenomic/lib/loader-feed-webpack-plugin" | |
import pkg from "./package.json" |
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 remark from "remark" | |
import slug from "remark-slug" | |
import autoLinkHeadings from "remark-autolink-headings" | |
import highlight from "remark-highlight.js" | |
import toc from "remark-toc" | |
import html from "remark-html" | |
function mdify(text) { | |
return remark() | |
// https://github.com/wooorm/remark-slug |
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
// @flow | |
import React, { Component } from "react" | |
type Props = { | |
onMouseEnter?: Function | boolean, | |
onMouseLeave?: Function | boolean, | |
} | |
type State = { |
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" | |
class Test extends Component { | |
handleThing = () => { | |
this.setState({ | |
// ... | |
}) | |
}; | |
render() { |
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
[version] | |
0.30.0 | |
[ignore] | |
.*/.git/.* | |
.*/node_modules/.* | |
.*/.nyc_output/.* | |
.*/__tests__/.* | |
.*/dist/.* |
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 styles from "./index.css" | |
export default class Hero extends Component { | |
componentDidMount() { | |
if (typeof window !== "undefined") { | |
require("particles.js").particlesJS.load("particles-js", "assets/particles.json", function() { | |
console.log("callback - particles.js config loaded") |