squiggle/foretold/components/showcase/entries/Showcase_Alerts.re
2022-01-12 18:33:04 +11:00

13 lines
438 B
ReasonML

open FC.Base;
let alerts = () =>
<div>
<Alert type_=`primary> "Primary alert"->React.string </Alert>
<Alert type_=`info> "Info alert"->React.string </Alert>
<Alert type_=`success> "Success alert"->React.string </Alert>
<Alert type_=`warning> "Warning alert"->React.string </Alert>
<Alert type_=`error> "Error alert"->React.string </Alert>
</div>;
let entry = EntryTypes.(entry(~title="Alerts", ~render=alerts));