6 lines
149 B
JavaScript
6 lines
149 B
JavaScript
import styles from './Error.module.css';
|
|
|
|
export default function Error({ children }) {
|
|
return <span className={styles.error}>{children}</span>;
|
|
}
|