import React from 'react'; import CIcon from '@coreui/icons-react'; import { CCol, CFormGroup, CInput, CInputFile, CLabel, CButton, CCard, CCardHeader, CCardBody, CCardFooter, } from '@coreui/react'; const Dashboard = (props) => { return (
{props.gotuserid ? ( // Conditional rendering based on props.gotuserid <>

ワンタイムパスワード: {props.userid}

FBS Web app

) : (
{/* Replace the following div with your wait indicator or spinner */}

読み込み中...

)}
); }; export default Dashboard;