Перенес в поддиректорию
This commit is contained in:
parent
c2edde8183
commit
f885199b2b
@ -1,6 +1,6 @@
|
||||
import styles from './styles.module.css'
|
||||
import {useContext, useEffect, useState} from "react";
|
||||
import Context, {ContextInterface} from "../command/context";
|
||||
import Context, {ContextInterface} from "../../context";
|
||||
|
||||
export interface ArgumentInterface {
|
||||
name: string,
|
@ -1,7 +1,7 @@
|
||||
import styles from './styles.module.css'
|
||||
import {useContext, useEffect, useState} from "react";
|
||||
import Argument, {ArgumentInterface} from "../argument";
|
||||
import Context, {ContextInterface} from "../command/context";
|
||||
import Context, {ContextInterface} from "../../context";
|
||||
|
||||
interface ArgumentsInterface {
|
||||
argumentList: ArgumentInterface[]
|
@ -1,6 +1,6 @@
|
||||
import styles from './styles.module.css'
|
||||
import {useContext} from "react";
|
||||
import Context, {ContextInterface} from "../command/context";
|
||||
import Context, {ContextInterface} from "../../context";
|
||||
|
||||
export interface OptionInterface {
|
||||
name: string,
|
@ -1,7 +1,7 @@
|
||||
import styles from './styles.module.css'
|
||||
import Option, {OptionInterface} from '../option'
|
||||
import {useContext, useEffect, useState} from "react";
|
||||
import Context, {ContextInterface} from "../command/context";
|
||||
import Context, {ContextInterface} from "../../context";
|
||||
|
||||
interface OptionsInterface {
|
||||
optionList: OptionInterface[]
|
@ -1,8 +1,8 @@
|
||||
import styles from './styles.module.css'
|
||||
import Options from "../options";
|
||||
import Arguments from "../arguments";
|
||||
import {OptionInterface} from "../option";
|
||||
import {ArgumentInterface} from "../argument";
|
||||
import Options from "./elements/options";
|
||||
import Arguments from "./elements/arguments";
|
||||
import {OptionInterface} from "./elements/option";
|
||||
import {ArgumentInterface} from "./elements/argument";
|
||||
import {Provider} from "./context";
|
||||
import {useState} from "react";
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import Head from 'next/head'
|
||||
import styles from '../styles/Home.module.css'
|
||||
import {OptionInterface} from "../components/elements/option";
|
||||
import {ArgumentInterface} from "../components/elements/argument";
|
||||
import {OptionInterface} from "../components/elements/command/elements/option";
|
||||
import {ArgumentInterface} from "../components/elements/command/elements/argument";
|
||||
import Command from "../components/elements/command";
|
||||
|
||||
interface CommandInterface {
|
||||
|
Loading…
Reference in New Issue
Block a user