jedifocus.navigations
Version:
Columns of JediFocus.
34 lines (30 loc) • 786 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 React from 'react';
declare module 'jedifocus-columns-types' {
declare type ColumnProps = {
modalId: string,
heading: string,
descriptions: { [string]: string },
className: string,
headingClassName: string,
column: string,
children?: React.ReactNode
};
declare type ColumnCoreProps = {
descriptions: { [string]: string },
modalId: string,
modalColumn: string
};
}