// @jsx: react // @strict: true // @esModuleInterop: true /// import React from 'react'; interface Props { text: string; } function BackButton(_props: Props) { return
} BackButton.defaultProps = { text: 'Go Back', }; let a =