Fix import order

This commit is contained in:
Claire
2023-12-02 19:21:43 +01:00
parent ba4c8a9b41
commit e47c582283
6 changed files with 35 additions and 20 deletions

View File

@@ -1,8 +1,11 @@
import { Fragment } from 'react';
import PropTypes from 'prop-types';
import { Check } from 'flavours/glitch/components/check';
import { Fragment } from 'react';
import classNames from 'classnames';
import { Check } from 'flavours/glitch/components/check';
const ProgressIndicator = ({ steps, completed }) => (
<div className='onboarding__progress-indicator'>
{(new Array(steps)).fill().map((_, i) => (

View File

@@ -1,6 +1,7 @@
import PropTypes from 'prop-types';
import { Icon } from 'flavours/glitch/components/icon';
import { Check } from 'flavours/glitch/components/check';
import { Icon } from 'flavours/glitch/components/icon';
const Step = ({ label, description, icon, completed, onClick, href }) => {
const content = (