我在打字稿中有以下代码。当我运行它时,我收到以下错误:
错误TS2339:类型'IntrinsicAttributes&中存在属性'sytle'。 IntrinsicClassAttributes> &安培;读...'。
import React, { SFC } from 'react'
import { Image, StyleSheet } from 'react-native'
const logo = require('../../assets/Logo.png') // tslint:disable-line:no-var-requires
export const NamedLogo: SFC<any> = () =>
<Image
source={logo}
sytle={styles.logo}
/>
const styles = StyleSheet.create({
logo: {
width: 88,
height: 42
}
})
如何在打字稿中玷污SFC中的样式?
答案 0 :(得分:0)
检查style
的拼写。你有 y tle