mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
12 lines
297 B
TypeScript
12 lines
297 B
TypeScript
import { 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',
|
|
};
|