right-tree/frontend/src/components/steps/specifics/ProjectSpecificsSelector.jsx
Matthew Northcott 0f36c79dbf [] Review changes
- add comment about Suspense
- add missing key attributes
- remove redundant fragments
- prettier formatting
- rename React component files with .jsx extension
2023-02-10 14:20:15 +13:00

9 lines
203 B
JavaScript

import { useEffect } from "react";
export default function ProjectSpecificsSelector(props) {
useEffect(() => {
props.setNextDisabled(false);
});
return <h2>Project Specifics Selector</h2>;
}