import React from 'react'; import { View, Text, AppProps } from 'magic-script-components'; interface Props extends AppProps { message: string; } interface State { message: string; } export default class MyApp extends React.Component { state: State; constructor(props: Props) { super(props); this.state = { message: props.message }; } render() { return ( Hello Magic Script ); } }