Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(app): extend SectionList component for Generic Step Screen #8513

Merged
merged 12 commits into from
Oct 13, 2021
Prev Previous commit
Next Next commit
revert export function change back to export const
  • Loading branch information
jerader committed Oct 13, 2021
commit 4ebbb0ce6e41b6d524d813486a109b83f15a7d1b
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ interface GenericStepScreenProps {
selectedStep: LabwarePositionCheckStep
setCurrentLabwareCheckStep: (stepNumber: number) => void
}
export function GenericStepScreen(
export const GenericStepScreen = (
props: GenericStepScreenProps
): JSX.Element | null {
): JSX.Element | null => {
const introInfo = useIntroInfo()
const [sectionIndex] = React.useState<number>(0)
if (introInfo == null) return null
Expand Down