Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/base/BlankBaseLayout/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Head from 'next/head';
import classNames from 'classnames';

Expand Down
2 changes: 1 addition & 1 deletion src/base/DefaultBaseLayout/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Head from 'next/head';
import classNames from 'classnames';
import NavBar from '../../components/NavBar';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Badge/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function Badge(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/CheckboxFormControl/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function CheckboxFormControl(props) {
Expand Down
4 changes: 2 additions & 2 deletions src/components/ContactSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';
import classNames from 'classnames';
import { getDynamicComponent } from '../../components-registry';
Expand All @@ -15,7 +15,7 @@ export default function ContactSection(props) {
const contentWidth = props.contentWidth || 'large';
const contentAlignHoriz = props.contentAlignHoriz || 'left';
const contentAlignVert = props.contentAlignVert || 'middle';

return (
<div
id={props.elementId}
Expand Down
2 changes: 1 addition & 1 deletion src/components/CtaSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';
import classNames from 'classnames';
import Badge from '../Badge';
Expand Down
2 changes: 1 addition & 1 deletion src/components/EmailFormControl/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function EmailFormControl(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeaturedPeopleSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';
import Markdown from 'markdown-to-jsx';
import Badge from '../Badge';
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeaturedPostsSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';
import dayjs from 'dayjs';
import Badge from '../Badge';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';
import classNames from 'classnames';
import Action from '../Action';
Expand Down
2 changes: 1 addition & 1 deletion src/components/HeroSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';
import classNames from 'classnames';
import { getDynamicComponent } from '../../components-registry';
Expand Down
2 changes: 1 addition & 1 deletion src/components/ImageBlock/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function ImageBlock(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/InlineMarkdown/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';

export default function InlineMarkdown(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { useState } from 'react';
import classNames from 'classnames';
import Action from '../Action';
Expand Down
2 changes: 1 addition & 1 deletion src/components/QuoteSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';
import classNames from 'classnames';

Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectFormControl/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function SelectFormControl(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Social/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';
import Link from '../../utils/link';
import Facebook from '../../svgs/facebook';
Expand Down
2 changes: 1 addition & 1 deletion src/components/TestimonialsSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';
import classNames from 'classnames';
import Badge from '../Badge';
Expand Down
2 changes: 1 addition & 1 deletion src/components/TextFormControl/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function TextFormControl(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/TextSection/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import Markdown from 'markdown-to-jsx';
import classNames from 'classnames';
import Badge from '../Badge';
Expand Down
2 changes: 1 addition & 1 deletion src/components/TextareaFormControl/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function TextareaFormControl(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/VideoBlock/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import classNames from 'classnames';

export default function VideoBlock(props) {
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/PageLayout/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import { getDynamicComponent } from '../../components-registry';
import { getBaseLayoutComponent } from '../../utils/base-layout';

Expand Down
2 changes: 1 addition & 1 deletion src/layouts/PostLayout/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import dayjs from 'dayjs';
import Markdown from 'markdown-to-jsx';
import ImageBlock from '../../components/ImageBlock';
Expand Down
2 changes: 1 addition & 1 deletion src/utils/link.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';
import NextLink from 'next/link';

export default function Link({ children, href, ...other }) {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/next-link.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import * as React from 'react';

// Simulate next/link behavior
export default function Link(props) {
Expand Down