博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[TypeStyle] Reusable styles using TypeStyle mixins
阅读量:5172 次
发布时间:2019-06-13

本文共 819 字,大约阅读时间需要 2 分钟。

TypeStyle’s style function allows you to give multiple objects as an argument. This provides a simple extensible reuse-ability model. We cover typestyle mixin and mixin creators in this lesson. We also demonstrate that you have the full power of JavaScript at your disposal when using TypeStyle.

 

import { style } from 'typestyle';import * as React from 'react';import * as ReactDOM from 'react-dom';const fontSize = (value: number | string) => {    const valueStr = typeof value === 'string' ?                     value :                     value + 'px';    return {        fontSize: valueStr    }};const className = style(    fontSize('3em'),    {color: 'red'});ReactDOM.render(    
Hello Typestyle
, document.getElementById('root'));

 

转载于:https://www.cnblogs.com/Answer1215/p/6946408.html

你可能感兴趣的文章
Filter in Servlet
查看>>
Linux--SquashFS
查看>>
Application Pool Identities
查看>>
2017-3-24 开通博客园
查看>>
【MySQL性能优化】MySQL常见SQL错误用法
查看>>
Vue2全家桶之一:vue-cli(vue脚手架)超详细教程
查看>>
Struts 2 常用技术
查看>>
树形DP
查看>>
python flask解决上传下载的问题
查看>>
语法测试
查看>>
CES1
查看>>
CES2
查看>>
文件方式实现完整的英文词频统计实例
查看>>
单个SWF文件loading加载详解(转)
查看>>
SQLServer中的CTE通用表表达式
查看>>
C# 3.0 LINQ的准备工作
查看>>
静态代码审查工具FxCop插件开发(c#)
查看>>
创建代码仓库
查看>>
理解裸机部署过程ironic
查看>>
Django 组件-ModelForm
查看>>