UNPKG

ada

Version:

a simple frentend build tool

41 lines (39 loc) 1.29 kB
import '../scss/test.scss' import React from 'react' export default function Static () { return <div className='wrap'> <h3>图片测试</h3> <div className='big' /> <hr /> <h3>图片(base64)测试, Autoprefixer 测试</h3> <div className='logo' /> <hr /> <h3>雪碧图测试</h3> <span className='icon icon-html5' /> <span className='icon icon-twitter' /> <span className='icon icon-instagram' /> <span className='icon icon-facebook' /> <span className='icon icon-youtube' /> <hr /> <h3>iconfont 测试</h3> <span className='iconfont icon-iPhone' /> <span className='iconfont icon-MacBookPro' /> <span className='iconfont icon-iPad' /> <span className='iconfont icon-AppleWatchSeries' /> <hr /> <h3>字体 测试</h3> <div className='font'> A B C D E F G H I J K L M N O P Q R S T U V W X Y Z <br /> a b c d e f g h i j k l m n o p q r s t u v w x y z <br /> 1 2 3 4 5 6 7 8 9 0 </div> <hr /> <h3>其他页面</h3> <a className='link' href='./index.html'>Index</a> <a className='link' href='./test.html'>Test</a> <a className='link' href='./test.vue.html'>Vue</a> <a className='link' href='./test.react.html'>React</a> </div> }