-
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.
feat(Enviroment-Alert): added an alert when portal running in develop…
…ment
- Loading branch information
1 parent
35d604f
commit 2dedc2f
Showing
5 changed files
with
58 additions
and
39 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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import React from 'react' | ||
import Alert from '@mui/material/Alert' | ||
import AlertTitle from '@mui/material/AlertTitle' | ||
|
||
function AlertEnvironment() { | ||
return ( | ||
<Alert severity='warning'> | ||
<AlertTitle>This is a development and testing version of this platform.</AlertTitle> | ||
Do not use its data or reference it in any way. | ||
<br /> | ||
For the official product, visit the link | ||
<a href='https://solarsystem.linea.org.br' target='blank' rel='noopener noreferrer'> | ||
https://solarsystem.linea.org.br. | ||
</a> | ||
</Alert> | ||
) | ||
} | ||
|
||
export default AlertEnvironment |
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
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
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