toggle-corp/react-store

View on GitHub
components/Input/MultiSegmentInput.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import ChecklistInput from './ChecklistInput';

const MultiSegmentInput = props => (
    <ChecklistInput
        {...props}
        segment
    />
);

export default MultiSegmentInput;