Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bot] Run grit migration: Apply a GritQL pattern #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 docs/my-website/src/components/CrispChat.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ const CrispChat = () => {
return null;
};

export default CrispChat;
export const CrispChat = CrispChat;
2 changes: 1 addition & 1 deletion docs/my-website/src/components/HomepageFeatures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function Feature({Svg, title, description}) {
);
}

export default function HomepageFeatures() {
export function HomepageFeatures() {
return (
<section className={styles.features}>
<div className="container">
Expand Down
2 changes: 1 addition & 1 deletion docs/my-website/src/components/QuickStart.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ const QuickStartCodeBlock = ({ token }) => {
);
}

export default QuickStart;
export const QuickStart = QuickStart;
2 changes: 1 addition & 1 deletion docs/my-website/src/components/TokenGen.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ return (
);
};

export default TokenGen;
export const TokenGen = TokenGen;
2 changes: 1 addition & 1 deletion docs/my-website/src/components/queryParamReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ const QueryParamReader = () => {
);
}

export default QueryParamReader;
export const queryParamReader = QueryParamReader;
2 changes: 1 addition & 1 deletion docs/my-website/src/components/queryParamToken.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ const QueryParamToken = () => {
);
}

export default QueryParamToken;
export const queryParamToken = QueryParamToken;
2 changes: 1 addition & 1 deletion docs/my-website/src/pages-fake/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function HomepageHeader() {
);
}

export default function Home() {
export function Home() {
const {siteConfig} = useDocusaurusContext();
return (
<Layout
Expand Down