mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
11 lines
245 B
TypeScript
11 lines
245 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',
|
|
};
|