import React from 'react'; /* Style */ import '../Style/Global.css'; //import { useTheme } from '../Style/ThemeContext'; /* Model */ import Stub from '../model/Stub'; import Indice from '../model/Indices/Indice'; /* lang */ import { FormattedMessage } from 'react-intl'; interface IndiceListComponentProps { instance: (new (...args: any[]) => T) | (Function & { prototype: T }); lang: string; } const IndiceList: React.FC> = ({ instance, lang }) => { const indices = Stub.GenerateIndice(); return ( <> ); } export default IndiceList;