Added send order button

This commit is contained in:
Nedim Uka
2018-06-12 13:42:45 +02:00
parent afcf7a3a91
commit 4e52521fae
6 changed files with 171 additions and 2447 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react'
export const Order = (props) => {
return (
<button onClick={props.onOrderClicked} > SEND ORDER </button>
)
}
export default Order