// withHooks
// noPage

import { ComponentMessage } from 'esoftplay/cache/component/message/import';

import React from 'react';


export interface MarketEmptyProps {
  msg?: string
}
export default function m(props: MarketEmptyProps): any {
  return (
    // <View style={{ flex: 1, alignItems: "center", justifyContent: "center", padding: 20 }} >
    //   <LibTextstyle text={props.msg || ""} textStyle={"callout"} style={{ textAlign: 'center' }} />
    // </View>
    <ComponentMessage message={props.msg || ''} />
  )
}
