find . -name '.DS_Store' -type f -delete
- JUNE 14
MANCHESTER, TN - AUG 1
BURLINGTON, VT - AUG 3
MONTREAL, CA - AUG 4
NORTHAMPTON, MA - AUG 6
CLEVELAND, OH
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 * as React from "react" | |
| import { Frame, addPropertyControls, ControlType } from "framer" | |
| type Props = { | |
| width: number | string | |
| height: number | string | |
| color: string | |
| } | |
| export const SvgComponent = (props: 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
| import * as React from 'react' | |
| import { Stack, Frame } from 'framer' | |
| import { colors } from './canvas' | |
| export function Colors() { | |
| const [colorsTokens] = React.useState(() => { | |
| return Object.keys(colors).map(key => colors[key]) | |
| }) | |
| return ( |
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 * as React from 'react' | |
| import { useState, useEffect, useRef } from 'react' | |
| import { Frame, addPropertyControls, ControlType } from 'framer' | |
| import { Runtime, Inspector } from '@observablehq/runtime' | |
| import notebook from '@davo/bar-chart-race' | |
| export function Observable({ tick }) { | |
| const [tickDuration, setTickDuration] = useState(tick) | |
| const animationRef = useRef() |
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
| // https://framer.slack.com/archives/CB74N2FDY/p1557954143213500?thread_ts=1557952502.211200&cid=CB74N2FDY | |
| import { Override, Data } from "framer" | |
| import * as React from "react" | |
| const initialSize = document.body.getBoundingClientRect() | |
| const preview = Data({ width: initialSize.width, height: initialSize.height }) |
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 * as React from 'react' | |
| import { useState, useEffect } from 'react' | |
| import { Frame, addPropertyControls, ControlType } from 'framer' | |
| import styled, { css } from 'styled-components' | |
| interface Props { | |
| padding?: number | |
| paddingLeft?: number | |
| color?: string | |
| listBackgroundColor?: string |
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 * as React from 'react' | |
| import ReactTable from 'react-table' | |
| import { CSSCustomProperties, TableWrapper } from './TableWrapper' | |
| interface Props { | |
| rowSize?: string | number | |
| } | |
| export class Table extends React.Component<Props> { | |
| static defaultProps = { |
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
| osascript -e 'id of app "Sketch"' | |
| defaults write com.bohemiancoding.sketch3 NSRequiresAquaSystemAppearance -bool yes |