Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- "use client";
-
- import React from "react";
- import TransferList, { TransferListProps } from "./TransferList";
- import MultiSelectList from "./MultiSelectList";
- import useIsMobile from "../utils/useIsMobile";
-
- const TransferListWrapper: React.FC<TransferListProps> = (props) => {
- const matches = useIsMobile();
-
- return !matches ? (
- <TransferList {...props} />
- ) : (
- <MultiSelectList {...props} />
- );
- };
-
- export default TransferListWrapper;
|