mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-09-16 07:44:34 -04:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
import { define } from "factoria";
|
|
|
|
export default define( "RemoteObservationField", faker => ( {
|
|
id: faker.number.int( ),
|
|
name: faker.person.firstName( ),
|
|
datatype: "text",
|
|
allowed_values: "",
|
|
description: faker.lorem.paragraph( ),
|
|
} ) );
|