everything moved to src

This commit is contained in:
2024-11-20 16:09:31 -05:00
parent b29d1b5722
commit 5e22ba8148
88 changed files with 24 additions and 23 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
import styles from './style.module.css';
const ErrorMessage = ({ error }) => (
<div className="ErrorMessage">
<small>{error.toString()}</small>
</div>
);
export default ErrorMessage;