jedifocus.navigations
Version:
Columns of JediFocus.
26 lines (23 loc) • 626 B
JavaScript
/* __.-._
* '-._"7' JediFocus
* /'.-c
* | /T Do. Or do not.
* _)_/LI There is no try.
*
* This project is a part of the “Byte-Sized JavaScript” videocasts.
* You can watch “Byte-Sized JavaScript” at: https://bytesized.tv/
*
* MIT Licensed — See LICENSE.md
*
* Send your comments, suggestions, and feedback to me@volkan.io
*/
import * as React from 'react';
declare module 'jedifocus-buttons-types' {
declare type ActionButtonProps = {
children?: React.Node,
onClick?: (evt: React.MouseEvent) => void,
className?: string,
title?: string,
disabled?: boolean
};
}