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 { useIntersect } from "../../../utils/hooks/useIntersect"; | |
import { useUI } from "../../_UI"; | |
import { BoxWrapper, LineOverlay } from "./styled"; | |
export default props => { | |
const { style, children, $appearance } = props; |
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 default { | |
AF: { name: "Afghanistan", flag: "🇦🇫", code: "+93", currency: "AFN" }, | |
AX: { name: "Åland Islands", flag: "🇦🇽", code: "+358", currency: "EUR" }, | |
AL: { name: "Albania", flag: "🇦🇱", code: "+355", currency: "ALL" }, | |
DZ: { name: "Algeria", flag: "🇩🇿", code: "+213", currency: "DZD" }, | |
AS: { name: "American Samoa", flag: "🇦🇸", code: "+1684", currency: "USD" }, | |
AD: { name: "Andorra", flag: "🇦🇩", code: "+376", currency: "EUR" }, | |
AO: { name: "Angola", flag: "🇦🇴", code: "+244", currency: "AOA" }, | |
AI: { name: "Anguilla", flag: "🇦🇮", code: "+1264", currency: "XCD" }, | |
AQ: { name: "Antarctica", flag: "🇦🇶", code: "+672" }, |
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
React = require "react" | |
{video,source} = React.DOM | |
View = React.createClass | |
displayName: "Video" | |
shouldComponentUpdate:(nextProps,nextState)-> | |
# unless @refs.video.readyState is 4 | |
# return 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
React = require “react” | |
$$ = React.DOM | |
Loader = require("./loader") | |
Card = React.createClass | |
getInitialState:()-> | |
states = | |
loading:true |