mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-09-16 07:44:34 -04:00
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
import { define } from "factoria";
|
|
|
|
import projectFactory from "./RemoteProject";
|
|
|
|
export default define( "RemoteProjectObservation", faker => ( {
|
|
uuid: faker.string.uuid(),
|
|
id: faker.number.int(),
|
|
project_id: faker.number.int(),
|
|
project: projectFactory( "RemoteProject" ),
|
|
} ) );
|