### Initialize MotionRail Carousel (JavaScript) Source: https://context7_llms Demonstrates how to initialize a new MotionRail carousel instance with specified options. This code requires the MotionRail library to be imported. It takes a CSS selector for the carousel container and an options object as input. ```javascript import MotionRail from 'motionrail'; const carousel = new MotionRail('.carousel', { columns: 3, gap: 16, snap: true }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.