right-tree/frontend/src/components/steps/habitat/HabitatSelector.js
Dana Lambert 473cc9ca6e Add sample step components for the remaining steps with accompaning text
- rename step subfolders from <name>step to <name>
2021-10-20 16:52:06 +13:00

12 lines
218 B
JavaScript

import { useEffect } from 'react';
export default function HabitatSelector(props) {
useEffect(() => {
props.setNextDisabled(false);
});
return (
<h2>Habitat Selector</h2>
)
}