
- add new fields to support this - when free: - fade out all event types after first - hide events after first on booking page - make booking page after the first one 404 if accessed directly - add e2e tests
8 lines
260 B
TypeScript
8 lines
260 B
TypeScript
import { Alert } from "../Alert";
|
|
|
|
/**
|
|
* @deprecated use `<Alert severity="error" message="x" />` instead
|
|
*/
|
|
export default function ErrorAlert(props: { message: string; className?: string }) {
|
|
return <Alert severity="errror" message={props.message} />;
|
|
}
|