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