43b0945028
* Reorganize context/states/selectors in dedicated folders * linter
12 lines
404 B
TypeScript
12 lines
404 B
TypeScript
import React from 'react';
|
|
import { useRecoilValue } from 'recoil';
|
|
|
|
import { ActionBar } from '@/ui/action-bar/components/ActionBar';
|
|
|
|
import { selectedCardIdsSelector } from '../states/selectors/selectedCardIdsSelector';
|
|
|
|
export function EntityBoardActionBar() {
|
|
const selectedBoardCards = useRecoilValue(selectedCardIdsSelector);
|
|
return <ActionBar selectedIds={selectedBoardCards}></ActionBar>;
|
|
}
|