Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 14 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
1 | import React from 'react'; |
||
2 | |||
3 | interface IProperties { |
||
4 | source: string |
||
5 | } |
||
6 | |||
7 | interface IState { |
||
8 | } |
||
9 | |||
10 | export default class Style extends React.Component<IProperties, IState> { |
||
11 | render() { |
||
12 | 1 | return <link rel="stylesheet" href={'./Style/' + this.props.source + '.css'} />; |
|
13 | } |
||
14 | } |