mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-05 14:53:32 +00:00

* fix: redux serializableCheck * chore: read login state * fix: show loading page while checking user state * chore: cell data parser
36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import {
|
|
TestCreateGrid,
|
|
TestCreateNewField,
|
|
TestCreateRow,
|
|
TestCreateSelectOptionInCell,
|
|
TestDeleteField,
|
|
TestDeleteRow,
|
|
TestEditCell,
|
|
TestEditField,
|
|
TestGetSingleSelectFieldData,
|
|
TestSwitchFromMultiSelectToText,
|
|
TestSwitchFromSingleSelectToNumber,
|
|
} from './TestGrid';
|
|
|
|
export const TestAPI = () => {
|
|
return (
|
|
<React.Fragment>
|
|
<ul className='m-6, space-y-2'>
|
|
{/*<TestApiButton></TestApiButton>*/}
|
|
<TestCreateGrid></TestCreateGrid>
|
|
<TestCreateRow></TestCreateRow>
|
|
<TestDeleteRow></TestDeleteRow>
|
|
<TestEditCell></TestEditCell>
|
|
<TestCreateSelectOptionInCell></TestCreateSelectOptionInCell>
|
|
<TestGetSingleSelectFieldData></TestGetSingleSelectFieldData>
|
|
<TestEditField></TestEditField>
|
|
<TestCreateNewField></TestCreateNewField>
|
|
<TestDeleteField></TestDeleteField>
|
|
<TestSwitchFromSingleSelectToNumber></TestSwitchFromSingleSelectToNumber>
|
|
<TestSwitchFromMultiSelectToText></TestSwitchFromMultiSelectToText>
|
|
</ul>
|
|
</React.Fragment>
|
|
);
|
|
};
|