mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-09-16 07:44:34 -04:00
13 lines
331 B
JavaScript
13 lines
331 B
JavaScript
import { define } from "factoria";
|
|
|
|
export default define( "RemotePost", faker => ( {
|
|
body: `<p>${faker.lorem.paragraph( )}</p>`,
|
|
id: faker.number.int( ),
|
|
parent: {
|
|
icon_url: faker.image.url( ),
|
|
id: faker.number.int( ),
|
|
},
|
|
published_at: faker.date.past( ).toISOString( ),
|
|
title: faker.lorem.sentence( ),
|
|
} ) );
|