This commit is contained in:
2023-10-09 01:45:09 +05:30
parent 66a59af061
commit 3478318912
5 changed files with 7 additions and 9 deletions

View File

@@ -5,7 +5,7 @@ FROM node:16-alpine AS build
COPY package.json .
# install node packages
RUN npm set progress=false && npm config set depth 0
RUN npm install
RUN npm install --legacy-peer-deps
# #
# # ---- Test ----

View File

@@ -4,8 +4,8 @@ import "./LoginProvider.component.scss"
const LoginProvider = (props: LoginProviderProps): JSX.Element => {
return (
<iframe
// src="https://iam.notabuck.com"
src="http://localhost:3001"
src="https://iam.notabuck.com"
// src="http://localhost:3001"
title="IAM"
className="ar-LoginProvider h-100"
/>

View File

@@ -1,4 +1,4 @@
import { useEffect, useRef, useState } from "react"
import { useRef, useState } from "react"
import { v4 as uuid } from "uuid"
import hljs from "highlight.js/lib/core"
import javascript from "highlight.js/lib/languages/javascript"

View File

@@ -1,8 +1,6 @@
import React from "react"
import Dropdown from "./Dropdown"
import Dropdown from "./DropDown"
describe("Dropdown", () => {
it("renders without error", () => {
})
it("renders without error", () => {})
})

View File

@@ -1,6 +1,6 @@
import { ChangeEvent, useState } from "react"
import { DropdownProps } from "../../../types/components.interface"
import "./Dropdown.component.scss"
import "./DropDown.component.scss"
const Dropdown = (props: DropdownProps): JSX.Element => {
const {