atrilabs-engine
atrilabs-engine copied to clipboard
Add a Ordered List Component
The signature of unordered list component should be as follows:-
type OrderedListProps = {
styles: React.CSSProperties;
custom: {
//The type attribute for the ordered list
type: string;
//Title of the list
title: string;
values: {
listItem: string;
listItemUrl?: string;
}[];
};
};
export const OrderedList: React.FC<OrderedListProps> = React.forwardRef(
(ref, props) => {
return <div></div>;
}
);
The design reference-
The type will be before the list item for both unordered and ordered lists.

Hello, could I work on this issue.
Thank you. Working on it.
Hello cruxcode,
I have checked on this issue, should I add a folder in the react-component-manifests or should I add to react-component-manifest-schema to implement the functionality.