right-tree/frontend/src/components/steps/summary/SummaryContent.js

13 lines
212 B
JavaScript
Raw Normal View History

import { useEffect } from 'react';
export default function SummaryContent(props) {
useEffect(() => {
props.setNextDisabled(false);
});
return (
<h2>Summary Content</h2>
)
}