MOCKSTACKS
EN
Questions And Answers

More Tutorials









React Stateless React Components in TypeScript


React components that are pure functions of their props and do not require any internal state can be written as JavaScript functions instead of using the standard class syntax, as:

import React from 'react'
const HelloWorld = (props) => (
 <h1>Hello, {props.name}!</h1>
);

The same can be achieved in Typescript using the React.SFC class:

import * as React from 'react';
class GreeterProps {
 name: string
}
const Greeter : React.SFC<GreeterProps> = props =>
 <h1>Hello, {props.name}!</h1>;

Note that, the name React.SFC is an alias for React.StatelessComponent So, either can be used.

Conclusion

In this page (written and validated by ) you learned about React Stateless React Components in TypeScript . What's Next? If you are interested in completing React tutorial, your next topic will be learning about: React Stateless and property less Components.



Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


Share On:


Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.