An open API service indexing awesome lists of open source software.

https://github.com/simpart/mofron-comp-ttlhdr


https://github.com/simpart/mofron-comp-ttlhdr

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# mofron-comp-ttlhdr
extends component of heaader for mofron.

this component is header for title of page.

please see [here](https://github.com/mofron/mofron) about an overview of mofron.

# Install

```bash
npm install mofron-comp-ttlhdr
```

# Sample
```javascript
let mf = require("mofron");
let Header = require("mofron-comp-ttlhdr");

let hdr = new Header({
/* this is option paramter */
title : 'APP_TITLE',
url : './',
height : 80,
color : new mf.Color(70,70,70)
});
hdr.visible(true);
```