# Title组件

## 组件API

### Title

- `title: String` ： 标题名称；
- `backHref: String` ：返回链接；
- `tips: String` ：tips配置项，没有可不写；
- `tipWidth: Number` ：tips配置项，没有可不写；
- `tipfs: Number` ：tips配置项，没有可不写；


## title使用方法

```
import React, { Component } from 'react';
import {Title}  from './components/Title'
let props={
title:'示例'，
backHref: 'https://baidu.com',
tipWidth:260,
tipfs:14,
tips: '一个tips'
};
class App extends Component {
  constructor(props) {
    super(props);
   
  }
  render() {
    return (
      <div className="App">
        <h1>点睛前端RadioGroup组件</h1>
	        <h3>RadioGroup 和 Radio 组件</h3>
	      
           <div className="App-intro">
        <Title {...props} />
        </div>
      </div>
    )
  }
}
export default App;
```