FPSMS-frontend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

PoSearchWrapper.tsx 333 B

​
​
​
​
​
​
il y a 3 semaines
​
​
​
​
​
1234567891011121314
  1. import PoSearchLoading from "./PoSearchLoading";
  2. import PoSearch from "./PoSearch";
  3. interface SubComponents {
  4. Loading: typeof PoSearchLoading;
  5. }
  6. const PoSearchWrapper: React.FC & SubComponents = () => {
  7. return <PoSearch po={[]} totalCount={0} />;
  8. };
  9. PoSearchWrapper.Loading = PoSearchLoading;
  10. export default PoSearchWrapper;