Bachelorthesis_Code/frontend/src/components/ErrorMessage.jsx

11 lines
182 B
React
Raw Normal View History

import React from "react";
import "../App.css";
export default function ErrorMessage(props) {
return (
<>
2021-07-14 19:05:16 +00:00
<p className="errorMessage">{props.message}</p>
</>
);
2021-07-14 19:05:16 +00:00
}