Wizard: organize steps components into the "components" folders
This commit is contained in:
parent
1ea1c2de8c
commit
2f034dffd8
26 changed files with 83 additions and 83 deletions
|
|
@ -11,9 +11,9 @@ import {
|
|||
Title,
|
||||
} from '@patternfly/react-core';
|
||||
|
||||
import Templates from './components/Templates';
|
||||
import Templates from './Templates';
|
||||
|
||||
import { useAppDispatch, useAppSelector } from '../../../../store/hooks';
|
||||
import { useAppDispatch, useAppSelector } from '../../../../../store/hooks';
|
||||
import {
|
||||
selectSnapshotDate,
|
||||
changeUseLatest,
|
||||
|
|
@ -21,10 +21,10 @@ import {
|
|||
changeTemplate,
|
||||
selectUseLatest,
|
||||
selectTemplate,
|
||||
} from '../../../../store/wizardSlice';
|
||||
import { yyyyMMddFormat } from '../../../../Utilities/time';
|
||||
import { useFlag } from '../../../../Utilities/useGetEnvironment';
|
||||
import { isSnapshotDateValid } from '../../validators';
|
||||
} from '../../../../../store/wizardSlice';
|
||||
import { yyyyMMddFormat } from '../../../../../Utilities/time';
|
||||
import { useFlag } from '../../../../../Utilities/useGetEnvironment';
|
||||
import { isSnapshotDateValid } from '../../../validators';
|
||||
|
||||
export default function Snapshot() {
|
||||
const dispatch = useAppDispatch();
|
||||
|
|
@ -3,7 +3,7 @@ import React from 'react';
|
|||
import { Button, Form, Grid, Content, Title } from '@patternfly/react-core';
|
||||
import { ExternalLinkAltIcon } from '@patternfly/react-icons';
|
||||
|
||||
import Snapshot from './Snapshot';
|
||||
import Snapshot from './components/Snapshot';
|
||||
|
||||
import { CONTENT_URL } from '../../../../constants';
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue