diff options
Diffstat (limited to 'src/lib/checkout/components/SectionExpedition.tsx')
| -rw-r--r-- | src/lib/checkout/components/SectionExpedition.tsx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/checkout/components/SectionExpedition.tsx b/src/lib/checkout/components/SectionExpedition.tsx new file mode 100644 index 00000000..d2dd5763 --- /dev/null +++ b/src/lib/checkout/components/SectionExpedition.tsx @@ -0,0 +1,12 @@ +import React from 'react'; +import { GetRatesCourierBiteship } from '../api/ExpedisiList'; +import { useQuery } from 'react-query'; + +export default function SectionExpedition() { + let destination = {} + let items = {} + const fetchExpedition = async () => await GetRatesCourierBiteship({destination, items}); + const {data : coursers, isLoading} = useQuery('expedition-'+destination, fetchExpedition) + + return <div>SectionExpedition</div>; +}
\ No newline at end of file |
