Footer.purs 564 Bytes
Newer Older
1 2
module Gargantext.Components.Footer where

3 4
import Gargantext.Prelude
import Gargantext.Utils.Reactix as R2
James Laver's avatar
James Laver committed
5 6
import Reactix as R
import Reactix.DOM.HTML as H
7

8 9 10

here :: R2.Here
here = R2.here "Gargantext.Components.Footer"
11 12

---------------------------------------------------------------------------
13
type FooterProps = ( )
14

15 16
footer :: R2.Component FooterProps
footer = R.createElement footerCpt
17

18
footerCpt :: R.Component FooterProps
19
footerCpt = here.component "footer" cpt where
20
  cpt { } _ = do
James Laver's avatar
James Laver committed
21
    pure $ H.div { className: "container" } [ H.hr {}, H.footer {} [] ]