import React from 'react'; import { PixelSlideIn } from './PixelSlideIn'; export function Default() { return (
Slides in from below on mount
); } export function FromLeft() { return (
Slides in from the left
); } export function OnHover() { return (
Hover to slide in from the right
); }