import React from 'react'; type API_TYPE = 'Tx' | 'Query' | 'Storage Provider'; const ApiTypes = (props: { type: API_TYPE }) => { const { type } = props; return ( {type} ); }; export default ApiTypes;