- {!showExamples && (
-
- }
- onClick={() => {
- setShowExamples(true);
- handleExamples();
- }}
- textColor="text-medium-emerald "
- title="Examples"
- >
- }
- onClick={() => {
- uploadFlow();
- setModalOpen(false);
- }}
- textColor="text-almost-dark-blue "
- title="Local File"
- >
-
- )}
- {showExamples && loadingExamples && (
-
-
-
- )}
- {showExamples &&
- !loadingExamples &&
- examples.map((example, index) => {
- return (
-
- {" "}
-
- }
- onClick={() => {
- addFlow(example, false);
- setModalOpen(false);
- }}
- textColor="text-medium-emerald "
- title={example.name}
- >
-
- );
- })}
-
-
-