mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-10 00:58:59 +00:00
17 lines
477 B
TypeScript
17 lines
477 B
TypeScript
![]() |
import React from 'react';
|
||
|
import TestApiButton from './TestApiButton';
|
||
|
import { TestCreateGrid, TestCreateSelectOption, TestEditCell } from './TestGrid';
|
||
|
|
||
|
export const TestAPI = () => {
|
||
|
return (
|
||
|
<React.Fragment>
|
||
|
<ul className='m-6, space-y-2'>
|
||
|
<TestApiButton></TestApiButton>
|
||
|
<TestCreateGrid></TestCreateGrid>
|
||
|
<TestEditCell></TestEditCell>
|
||
|
<TestCreateSelectOption></TestCreateSelectOption>
|
||
|
</ul>
|
||
|
</React.Fragment>
|
||
|
);
|
||
|
};
|