forked from prefeiturasp/SME-FilaDaCreche
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
import React from 'react'; | ||
|
||
export class Alert extends React.Component { | ||
render() { | ||
return ( | ||
<div className="alert alert-warning" role="alert" style={{"marginBottom": 0}}> | ||
<strong>Atenção!</strong> Estamos em fase de testes. Conheça as melhorias previstas e envie sugestões <a href="https://docs.google.com/forms/d/e/1FAIpQLSdt8YXI3i7RdolEMh-TX1oes5zGpSnbE3Sy3-ioVLJTqvgGVQ/viewform" taget="_blank" style={{"textDecoration": "underline"}}>aqui</a>. | ||
</div> | ||
) | ||
} | ||
} | ||
export const Alert = () => ( | ||
<div className="alert alert-warning" role="alert" style={{"marginBottom": 0}}> | ||
<strong>Atenção!</strong> Estamos em fase de testes. Conheça as melhorias previstas e envie sugestões <a href="https://docs.google.com/forms/d/e/1FAIpQLSdt8YXI3i7RdolEMh-TX1oes5zGpSnbE3Sy3-ioVLJTqvgGVQ/viewform" taget="_blank" style={{"textDecoration": "underline"}}>aqui</a>. | ||
</div> | ||
); |