Bh
Twitter Bootstrap 4 helpers for Phoenix.
Installation
If available in Hex, the package can be installed as:
Add
:bhto your list of dependencies inmix.exs:def deps do
[{:bh, "~> 0.0.1"}]end
Import all
Bhhelpers into needed view:defmodule YourApp.SomeView do
use YourApp.Web, :view import Bhend
It is also possible to import only one needed module:
defmodule YourApp.SomeView do
use YourApp.Web, :view import Bh.Labelend
Now you can use helpers in your view like this:
<%= hb_label_pill “Pill text”, type: :success %>