Skip to content
Snippets Groups Projects
Select Git revision
  • 806f0ded3a4dfa59167bb7cb9030166c68cf2e48
  • main default protected
2 results

crontab

Blame
  • Forked from TO / Forum
    Source project has a limited visibility.
    CardActions.jsx 308 B
    import React from "react";
    import classNames from "classnames";
    
    const CardActions = ({ children, right, className }) => {
      const cls = classNames(
        "card-actions",
        { "card-actions--right": !!right },
        className
      );
      return <div className={cls}>{children}</div>;
    };
    
    export default CardActions;