import React, { useState } from "react"; import styles from "./styles.module.css"; const Prompts = ({ show }) => { return ( <> {/* Prompts (static) */} {show && (

The name is already in used. You can try another.

)} ); }; export default Prompts;