Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Remember to rename your file to Hello.tsx and
- // place it within your src/ directory
- import * as React from "react";
- interface HelloProps {
- name: string;
- }
- class Hello extends React.Component<HelloProps, {}> {
- render() {
- return <div>Hello, {this.props.name}</div>;
- }
- }
- export default Hello;
Advertisement
Add Comment
Please, Sign In to add comment