npm.io
0.1.0 • Published 6 years ago

react-web-structure-header

Licence
MIT
Version
0.1.0
Deps
12
Size
49 kB
Vulns
0
Weekly
0

react-web-structure-header

A header template that can be used on web application and web site.

There's some types of header template

  1. Header with logo on left side
  2. Header with logo, title, and sub title on left side

Property

Not ready

How to Usage

Phase 1: Import Component

import HeaderLeftLogo from 'react-web-structure-header/types/HeaderLeftLogo'

Phase 2: Call Component

<HeaderLeftLogo />

Example Usage

Sample 1
import react from 'react'
import HeaderLeftLogo from 'react-web-structure-header/types/HeaderLeftLogo'

class Index {
    render() {
        return(
            <HeaderLeftLogo />
        )
    }
}