mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-06-16 13:46:16 +02:00
Format all files with Prettier
This commit is contained in:
@ -1,21 +1,21 @@
|
||||
Bootstrap alert component.
|
||||
|
||||
```jsx
|
||||
import {useState} from 'react';
|
||||
import { useState } from "react";
|
||||
|
||||
function AlertExample(){
|
||||
function AlertExample() {
|
||||
const [alert, setAlert] = useState(true);
|
||||
if (alert)
|
||||
return <Alert
|
||||
type='warning'
|
||||
onDismiss={()=>setAlert(false)}
|
||||
>
|
||||
Some warning out there!
|
||||
</Alert>;
|
||||
return <button
|
||||
className='btn btn-secondary'
|
||||
onClick={()=>setAlert(true)}
|
||||
>Show alert again</button>;
|
||||
};
|
||||
<AlertExample/>
|
||||
return (
|
||||
<Alert type="warning" onDismiss={() => setAlert(false)}>
|
||||
Some warning out there!
|
||||
</Alert>
|
||||
);
|
||||
return (
|
||||
<button className="btn btn-secondary" onClick={() => setAlert(true)}>
|
||||
Show alert again
|
||||
</button>
|
||||
);
|
||||
}
|
||||
<AlertExample />;
|
||||
```
|
||||
|
Reference in New Issue
Block a user