diff options
Diffstat (limited to 'storybook/initial_state.js')
-rw-r--r-- | storybook/initial_state.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/storybook/initial_state.js b/storybook/initial_state.js new file mode 100644 index 000000000..3872586f6 --- /dev/null +++ b/storybook/initial_state.js @@ -0,0 +1,24 @@ +export default { + meta: { + admin: 1, + domain: 'example.com', + me: 2, + }, + accounts: { + 1: { + acct: 'admin', + avatar: '/avatars/original/missing.png', + id: 1, + url: 'https://example.com/@admin', + }, + 2: { + acct: 'user', + avatar: '/avatars/original/missing.png', + id: 1, + url: 'https://example.com/@user', + }, + }, + media_attachments: { + accept_content_types: [], + }, +}; |