index.js (395B)
1 /** 2 * WordPress dependencies 3 */ 4 import ChallengeCongrats from './congrats'; 5 import ChallengeContact from './contact'; 6 import './style.scss' 7 8 export default function ChallengeFinalTemplate({finalStatus}) { 9 return <ChallengeCongrats /> 10 // TODO - When feedback is working, uncomment this. 11 // if (finalStatus === 'success') return <ChallengeCongrats /> 12 // return <ChallengeContact />; 13 }