diff options
author | fragosti <francesco.agosti93@gmail.com> | 2018-12-21 08:03:06 +0800 |
---|---|---|
committer | fragosti <francesco.agosti93@gmail.com> | 2018-12-21 08:03:06 +0800 |
commit | a67b34700e48cdf9a54c601af4ec9b9112fe4803 (patch) | |
tree | bb418b33a8e94fb0b7af3fddf20046cec4d7d22b /packages/website/ts/components/aboutPageLayout.tsx | |
parent | abdf91c691b924b75d71db49fba296da9c8ddcac (diff) | |
download | dexon-0x-contracts-a67b34700e48cdf9a54c601af4ec9b9112fe4803.tar.gz dexon-0x-contracts-a67b34700e48cdf9a54c601af4ec9b9112fe4803.tar.zst dexon-0x-contracts-a67b34700e48cdf9a54c601af4ec9b9112fe4803.zip |
feat: remove @next directory from all imports
Diffstat (limited to 'packages/website/ts/components/aboutPageLayout.tsx')
-rw-r--r-- | packages/website/ts/components/aboutPageLayout.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/website/ts/components/aboutPageLayout.tsx b/packages/website/ts/components/aboutPageLayout.tsx index 86a94ae2b..a2fd9dd72 100644 --- a/packages/website/ts/components/aboutPageLayout.tsx +++ b/packages/website/ts/components/aboutPageLayout.tsx @@ -2,13 +2,13 @@ import * as _ from 'lodash'; import * as React from 'react'; import styled from 'styled-components'; -import { Button } from 'ts/@next/components/button'; -import { ChapterLink } from 'ts/@next/components/chapter_link'; -import { Column, Section } from 'ts/@next/components/newLayout'; -import { SiteWrap } from 'ts/@next/components/siteWrap'; -import { Heading, Paragraph } from 'ts/@next/components/text'; +import { Button } from 'ts/components/button'; +import { ChapterLink } from 'ts/components/chapter_link'; +import { Column, Section } from 'ts/components/newLayout'; +import { SiteWrap } from 'ts/components/siteWrap'; +import { Heading, Paragraph } from 'ts/components/text'; -import { addFadeInAnimation } from 'ts/@next/constants/animations'; +import { addFadeInAnimation } from 'ts/constants/animations'; import { WebsitePaths } from 'ts/types'; interface Props { |