mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-10 00:29:41 +00:00
5600235ba1
refactor: migrate react components
19 lines
731 B
TypeScript
19 lines
731 B
TypeScript
import Info from '../../../../../common/components/info/Info';
|
|
import ExternalLink from '../../../../../common/components/link/external-link/ExternalLink';
|
|
|
|
const googleSheetDocsUrl = 'https://docs.getontime.no/features/import-spreadsheet-gsheet/';
|
|
|
|
export default function GSheetInfo() {
|
|
return (
|
|
<Info>
|
|
Ontime allows you to synchronize your rundown with a Google Sheet.
|
|
<br />
|
|
<br />
|
|
To enable this feature, you will need to generate tokens in your Google account and provide them to Ontime.
|
|
<br />
|
|
Once set up, you will be able to synchronize data between Ontime and your Google Sheet. <br />
|
|
<ExternalLink href={googleSheetDocsUrl}>See the docs</ExternalLink>
|
|
</Info>
|
|
);
|
|
}
|