5 lines
114 B
JavaScript
5 lines
114 B
JavaScript
|
|
import client from './client';
|
||
|
|
|
||
|
|
export function createOrder(order) {
|
||
|
|
return client.post('/api/orders', order);
|
||
|
|
}
|