Removed the index.js from the import statements
This commit is contained in:
parent
107a31f1fa
commit
785655a1b6
@ -1,8 +1,8 @@
|
||||
import "./styles.sass";
|
||||
import Button from "@components/Button/index.js";
|
||||
import LoginHeader from "@/pages/Login/components/LoginHeader/index.js";
|
||||
import Button from "@components/Button";
|
||||
import LoginHeader from "@/pages/Login/components/LoginHeader";
|
||||
import {useState} from "react";
|
||||
import LoginGroup from "@/pages/Login/components/LoginGroup/index.js";
|
||||
import LoginGroup from "@/pages/Login/components/LoginGroup";
|
||||
|
||||
const Login = () => {
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import "./styles.sass";
|
||||
import TextInput from "@components/TextInput/index.js";
|
||||
import TextInput from "@components/TextInput";
|
||||
|
||||
export const LoginGroup = ({id, state, setState, text}) => (
|
||||
<div className="login-group">
|
||||
|
Loading…
x
Reference in New Issue
Block a user