aria-live-storybook-addon
Version:
Observe and log aria-live region changes in the addon panel
16 lines (15 loc) • 317 B
TypeScript
import React from "react";
declare type Item = {
text: string;
time: string;
assertiveness: string;
};
interface ListItemProps {
item: Item;
}
export declare const ListItem: React.FC<ListItemProps>;
interface ListProps {
items: Item[];
}
export declare const List: React.FC<ListProps>;
export {};