Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 2806 | Rev 3001 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 2806 Rev 3000
Línea 8... Línea 8...
8
 
8
 
9
import QuestionCard from '../../components/my-coach/QuestionCard'
9
import QuestionCard from '../../components/my-coach/QuestionCard'
10
import AnswerCard from '../../components/my-coach/AnswerCard'
10
import AnswerCard from '../../components/my-coach/AnswerCard'
11
import AnswerModal from '../../components/my-coach/AnswerModal'
11
import AnswerModal from '../../components/my-coach/AnswerModal'
12
import ConfirmModal from '../../components/modals/ConfirmModal'
12
import ConfirmModal from '../../components/modals/ConfirmModal'
Línea 13... Línea 13...
13
import TitleSection from '../../components/UI/TitleSection'
13
import GoBackLayout from '@layouts/go-back'
14
 
14
 
15
const MyCoachViewPage = () => {
15
const MyCoachViewPage = () => {
16
  const [question, setQuestion] = useState({})
16
  const [question, setQuestion] = useState({})
Línea 196... Línea 196...
196
        })
196
        })
197
    }
197
    }
198
  }, [question])
198
  }, [question])
Línea 199... Línea 199...
199
 
199
 
200
  return (
-
 
201
    <>
200
  return (
202
      <TitleSection title={labels.my_coach} />
-
 
203
 
201
    <GoBackLayout title={labels.my_coach}>
204
      <Grid container mt={1}>
202
      <Grid container mt={1}>
205
        <Grid
203
        <Grid
206
          item
204
          item
207
          xs={12}
205
          xs={12}
Línea 249... Línea 247...
249
      <ConfirmModal
247
      <ConfirmModal
250
        show={modalShow === 'delete'}
248
        show={modalShow === 'delete'}
251
        onClose={closeModal}
249
        onClose={closeModal}
252
        onAccept={confirmDelete}
250
        onAccept={confirmDelete}
253
      />
251
      />
254
    </>
252
    </GoBackLayout>
255
  )
253
  )
256
}
254
}
Línea 257... Línea 255...
257
 
255