import * as React from 'react';
import {  ModalComponent, Button, RootWapperComponent } from '~/framework/components'
import { use<%= classify(name) %>Store } from './<%= dasherize(name) %>.component.store';
import { I<%= classify(name) %>Props } from './<%= dasherize(name) %>.interface'
import styles from './<%= dasherize(name) %>.component.style'
import { View,Text } from 'react-native';
export default function <%= classify(name) %>Component(props: I<%= classify(name) %>Props) {
  
  const { state} = use<%= classify(name) %>Store();

  return <View style={style.wapper}>
      <Text >HOME</Text>
  </View>
}
