-
-
Notifications
You must be signed in to change notification settings - Fork 655
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,519 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
import React, { useEffect, useState } from 'react'; | ||
import React, {useEffect, useState} from 'react'; | ||
import {Redirect} from 'react-router-dom'; | ||
import useBaseUrl from '@docusaurus/useBaseUrl'; | ||
import AdFit from '../uis/AdFit'; | ||
|
||
export default function Home() { | ||
|
||
useEffect(() => { | ||
location.href = '/docs/get-started'; | ||
}, []) | ||
}, []); | ||
|
||
return <div> | ||
<AdFit | ||
unit="DAN-YTmjDwlbcP42HBg6" | ||
height={100} | ||
width={320} | ||
className="adfit-top" | ||
style={{ | ||
height: 100, | ||
width: 320, | ||
marginTop: 48, | ||
}} | ||
/> | ||
</div> | ||
return ( | ||
<div> | ||
<AdFit | ||
unit="DAN-YTmjDwlbcP42HBg6" | ||
height={100} | ||
width={320} | ||
className="adfit-top" | ||
style={{ | ||
height: 100, | ||
width: 320, | ||
marginTop: 48, | ||
}} | ||
/> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
import { ConfigPlugin } from '@expo/config-plugins'; | ||
import {ConfigPlugin} from 'expo/config-plugins'; | ||
type PaymentProvider = 'Amazon AppStore' | 'both' | 'Play Store'; | ||
export declare const modifyAppBuildGradle: (buildGradle: string, paymentProvider: PaymentProvider) => string; | ||
export declare const modifyAppBuildGradle: ( | ||
buildGradle: string, | ||
paymentProvider: PaymentProvider, | ||
) => string; | ||
export declare const modifyProjectBuildGradle: (buildGradle: string) => string; | ||
interface Props { | ||
paymentProvider?: PaymentProvider; | ||
paymentProvider?: PaymentProvider; | ||
} | ||
declare const _default: ConfigPlugin<Props | undefined>; | ||
export default _default; |
Oops, something went wrong.