react-web-structure-heading
Version:
An heading template that can be used on web application and web site base on react.js.
34 lines (25 loc) • 602 B
Markdown
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 />
)
}
}
```