m3-academy-template-vtexio/custom/react/components/B2bForm/steps/ErrorStep.tsx

13 lines
355 B
TypeScript
Raw Normal View History

2022-08-11 13:06:07 +00:00
import React from "react";
import styles from "./Steps.css";
export default function ErrorStep() {
return (
<div className={styles.fail}>
<h1 className={styles.title}>Falha ao realizar cadastro</h1>
<p className={styles.subtitle}>Infelizmente houve um problema ao comunicar com o servidor</p>
</div>
);
}