diff --git a/components/argument/index.tsx b/components/elements/argument/index.tsx similarity index 100% rename from components/argument/index.tsx rename to components/elements/argument/index.tsx diff --git a/components/argument/styles.module.css b/components/elements/argument/styles.module.css similarity index 100% rename from components/argument/styles.module.css rename to components/elements/argument/styles.module.css diff --git a/components/arguments/index.tsx b/components/elements/arguments/index.tsx similarity index 100% rename from components/arguments/index.tsx rename to components/elements/arguments/index.tsx diff --git a/components/arguments/styles.module.css b/components/elements/arguments/styles.module.css similarity index 100% rename from components/arguments/styles.module.css rename to components/elements/arguments/styles.module.css diff --git a/components/command/context.ts b/components/elements/command/context.ts similarity index 100% rename from components/command/context.ts rename to components/elements/command/context.ts diff --git a/components/command/index.tsx b/components/elements/command/index.tsx similarity index 100% rename from components/command/index.tsx rename to components/elements/command/index.tsx diff --git a/components/command/styles.module.css b/components/elements/command/styles.module.css similarity index 100% rename from components/command/styles.module.css rename to components/elements/command/styles.module.css diff --git a/components/option/index.tsx b/components/elements/option/index.tsx similarity index 100% rename from components/option/index.tsx rename to components/elements/option/index.tsx diff --git a/components/option/styles.module.css b/components/elements/option/styles.module.css similarity index 100% rename from components/option/styles.module.css rename to components/elements/option/styles.module.css diff --git a/components/options/index.tsx b/components/elements/options/index.tsx similarity index 100% rename from components/options/index.tsx rename to components/elements/options/index.tsx diff --git a/components/options/styles.module.css b/components/elements/options/styles.module.css similarity index 100% rename from components/options/styles.module.css rename to components/elements/options/styles.module.css diff --git a/pages/index.tsx b/pages/index.tsx index 4271174..334248a 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,8 +1,8 @@ import Head from 'next/head' import styles from '../styles/Home.module.css' -import {OptionInterface} from "../components/option"; -import {ArgumentInterface} from "../components/argument"; -import Command from "../components/command"; +import {OptionInterface} from "../components/elements/option"; +import {ArgumentInterface} from "../components/elements/argument"; +import Command from "../components/elements/command"; interface CommandInterface { class: string,