mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 04:48:53 +00:00
17 lines
401 B
TypeScript
17 lines
401 B
TypeScript
import { DocProps, UserProps } from './components';
|
|
import { WorkspaceProps } from './components/workspace';
|
|
|
|
export const TEST_USER: UserProps = {
|
|
email: 'test@test.com',
|
|
};
|
|
|
|
export const TEST_WORKSPACE: WorkspaceProps = {
|
|
name: 'Test Workspace',
|
|
avatar: 'https://app.affine.pro/favicon-192.png',
|
|
};
|
|
|
|
export const TEST_DOC: DocProps = {
|
|
title: 'Test Doc',
|
|
url: 'https://app.affine.pro',
|
|
};
|