File size: 270 Bytes
a417977
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import style from "./style.module.scss";

export function Alert(props: {
    lines: string[]
}) {
    if(props.lines.length < 1) return null;

    return (
        <div className={style.alert}>
            {props.lines.map(line => <p>{line}</p>)}
        </div>
    );
}