File tree Expand file tree Collapse file tree 2 files changed +8
-18
lines changed Expand file tree Collapse file tree 2 files changed +8
-18
lines changed Original file line number Diff line number Diff line change @@ -73,21 +73,6 @@ const CheckoutForm = () => {
73
73
74
74
return (
75
75
< >
76
- < section className = "py-8 bg-white" >
77
- < div className = "container flex flex-wrap items-center pt-4 pb-12 mx-auto" >
78
- < nav id = "store" className = "top-0 w-full px-6 py-1" >
79
- < div className = "container flex flex-wrap items-center justify-between w-full px-2 py-3 mx-auto mt-0" >
80
- < a
81
- className = "mt-6 text-xl font-bold tracking-wide text-gray-800 no-underline uppercase hover:no-underline"
82
- href = "#"
83
- >
84
- Bestillingsskjema
85
- </ a >
86
- </ div >
87
- </ nav >
88
- </ div >
89
- </ section >
90
-
91
76
{ cart ? (
92
77
< form onSubmit = { handleFormSubmit } className = "woo-next-checkout-form" >
93
78
< div className = "row" > Skjema kommer her</ div >
Original file line number Diff line number Diff line change 1
- import CheckoutForm from '../components/Checkout/CheckoutForm.component' ;
2
-
3
- const Handlekurv = ( ) => < CheckoutForm /> ;
1
+ import PageTitle from 'components/Header/PageTitle.component' ;
2
+ import CheckoutForm from 'components/Checkout/CheckoutForm.component' ;
4
3
4
+ const Handlekurv = ( ) => (
5
+ < >
6
+ < PageTitle title = "Kasse" />
7
+ < CheckoutForm />
8
+ </ >
9
+ ) ;
5
10
export default Handlekurv ;
You can’t perform that action at this time.
0 commit comments