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