Rev 1356 |
Ir a la última revisión |
|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 1355 |
stevensc |
1 |
import React, { useEffect } from 'react'
|
|
|
2 |
import { axios } from 'utils/index'
|
|
|
3 |
|
|
|
4 |
const TermsAndConditionsPage = () => {
|
|
|
5 |
useEffect(() => {
|
|
|
6 |
axios.get('/terms-and-conditions').then((res) => console.log(res))
|
|
|
7 |
axios.get('/helpers/footer').then((res) => console.log(res))
|
|
|
8 |
}, [])
|
|
|
9 |
|
|
|
10 |
return <div>TermsAndConditionsPage</div>
|
|
|
11 |
}
|
|
|
12 |
|
|
|
13 |
export default TermsAndConditionsPage
|