# react-web-structure-heading
An heading template that can be used on web application and web site base on react.js.

There's some types of header template
1. Heading
2. Heading with description
  
## Property
Not ready

## How to Usage 
#### Phase 1: Import Component
`import Heading from 'react-web-structure-heading/types/Heading'`

#### Phase 2:  Call Component
` <Heading />` 

## Example Usage
#### Sample 1
```
import react from 'react'
import Heading from 'react-web-structure-heading/types/Heading'

class Index {
    render() {
        return(
            <Heading />
        )
    }
}
```


