import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faUser, faBuilding, faLock } from '@fortawesome/free-solid-svg-icons'; const RegisterForm = props => { const isDeveloperAccount = props.accountType === "developer"; const isDeveloperIcon = {isDeveloperAccount ? : } const lockIcon = return (

Rejestracja konta programisty do systemy Task-O!

) } export default RegisterForm;