mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-10 12:08:14 -06:00
Use absolute @/ style imports
- remove index.html
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import React, {Fragment, FunctionComponent, ReactNode} from "react";
|
||||
import {DomainType} from "./DomainType";
|
||||
import {rdapStatusInfo} from "../constants";
|
||||
import type {FunctionComponent, ReactNode} from "react";
|
||||
import React, {Fragment} from "react";
|
||||
import type {DomainType} from "@/components/DomainType";
|
||||
import {rdapStatusInfo} from "@/constants";
|
||||
|
||||
export type DomainProps = {
|
||||
data: DomainType;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import type {FunctionComponent} from "react";
|
||||
import {useMemo} from "react";
|
||||
import Domain from "./Domain";
|
||||
import Domain from "@/components/Domain";
|
||||
|
||||
export type Link = {
|
||||
value: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {FunctionComponent} from "react";
|
||||
import type {FunctionComponent} from "react";
|
||||
|
||||
export type Event = {
|
||||
eventAction: string;
|
||||
|
||||
Reference in New Issue
Block a user