add crud api

This commit is contained in:
2021-06-13 01:56:32 +03:00
parent 3e68914c92
commit 32da4e52ae
30 changed files with 582 additions and 63 deletions

View File

@ -0,0 +1,9 @@
import React, {FC, memo} from 'react';
const Page: FC = () => {
return (
<div>currencies</div>
);
};
export default memo(Page);

View File

@ -0,0 +1 @@
export {default} from './Page';