import { Tags } from 'idly-common/lib/osm/structures'; import * as React from 'react'; export function FieldCheck({ field, tags }: { field: any; tags: Tags }) { return (
FieldCheck: {field.label()}
{tags[field.key]}
); }