diff --git a/nym-wallet/src/components/TokenPoolSelector.tsx b/nym-wallet/src/components/TokenPoolSelector.tsx new file mode 100644 index 0000000000..6a00050e13 --- /dev/null +++ b/nym-wallet/src/components/TokenPoolSelector.tsx @@ -0,0 +1,18 @@ +import { ListItem, ListItemText, Select } from '@mui/material' +import React, { useState } from 'react' + +type TPool = 'balance' | 'locked' + +export const TokenPoolSelector: React.FC<{ onSelect: (pool: TPool) => void }> = ({ onSelect }) => { + const [value, setValue] = useState() + + return ( + <> + + + ) +}