Compare commits
2 Commits
9cd6f1ebcc
...
777d55dd58
| Author | SHA1 | Date |
|---|---|---|
|
|
777d55dd58 | 1 month ago |
|
|
4c9416b1b3 | 1 month ago |
@ -0,0 +1,11 @@
|
|||||||
|
interface Props{
|
||||||
|
children: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
function Alert({children} : Props) {
|
||||||
|
return (
|
||||||
|
<div className="alert alert-primary">{children}</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Alert
|
||||||
Loading…
Reference in New Issue