mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
9 lines
359 B
TypeScript
9 lines
359 B
TypeScript
import { FC } from 'react';
|
|
import { WiredFurniType } from '../../../../api';
|
|
import { WiredActionBaseView } from './WiredActionBaseView';
|
|
|
|
export const WiredActionFleeView: FC<{}> = props =>
|
|
{
|
|
return <WiredActionBaseView hasSpecialInput={ false } requiresFurni={ WiredFurniType.STUFF_SELECTION_OPTION_BY_ID_BY_TYPE_OR_FROM_CONTEXT } save={ null } />;
|
|
};
|