Skip to content

Commit

Permalink
updated prettier ignore file
Browse files Browse the repository at this point in the history
formatted files
  • Loading branch information
prabhuignoto committed Jan 18, 2024
1 parent cc1873a commit 29a6e1b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
5 changes: 3 additions & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
src/examples
env
icons
icons
src/demo
src/examples
1 change: 0 additions & 1 deletion src/components/timeline/timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ const Timeline: React.FunctionComponent<TimelineModel> = (
useEffect(() => {
const activeItem = items[activeTimelineItem || 0];


if (items.length && activeItem) {
// const item = items[activeItem];
const { title, cardTitle, cardSubtitle, cardDetailedText } = activeItem;
Expand Down
18 changes: 6 additions & 12 deletions src/components/toolbar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
import { FunctionComponent } from "react";


export type ToolbarProps = {
children?: React.ReactNode | React.ReactNode[];
}

import { FunctionComponent } from 'react';

export type ToolbarProps = {
children?: React.ReactNode | React.ReactNode[];
};

const Toolbar: FunctionComponent<ToolbarProps> = (props) => {
return <div>

</div>
}

return <div></div>;
};

export { Toolbar };

0 comments on commit 29a6e1b

Please sign in to comment.