mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-09-15 23:29:41 -04:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
import { define } from "factoria";
|
|
|
|
export default define( "RemoteObservationFieldValue", faker => ( {
|
|
id: faker.number.int( ),
|
|
field_id: faker.number.int( ),
|
|
uuid: faker.string.uuid( ),
|
|
value: faker.person.firstName( ),
|
|
} ) );
|