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
hallo welt! |
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": 8, | |
"name": "Red Ocean Minimal", | |
"sources": { | |
"openmaptiles": { | |
"type": "vector", | |
"url": "https://api.maptiler.com/tiles/v3/tiles.json?key=3LCncSsql2eNSaoGu4SP" | |
} | |
}, | |
"glyphs": "https://api.maptiler.com/fonts/{fontstack}/{range}.pbf?key=3LCncSsql2eNSaoGu4SP", |
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, { ReactNode } from 'react' | |
interface Props { | |
propsForChildren: any | |
} | |
const ApplyPropsToAllChildren: React.FunctionComponent<Props> = (props) => { | |
return <>{recursiveMap(props.children, props.propsForChildren)}</> | |
} | |
export default ApplyPropsToAllChildren |
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 Tooltip from "@material-ui/core/Tooltip"; | |
type Props = { | |
title: string | |
} | |
type State = { | |
mouseOverCounter: number |