for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import React from 'react';
interface IProperties {
source: string
}
interface IState {
export default class Style extends React.Component<IProperties, IState> {
render() {
return <link rel="stylesheet" href={'./Style/' + this.props.source + '.css'} />;