mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
// Copyright 2019-2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as React from 'react';
|
|
import { render } from 'react-dom';
|
|
import { Root } from './root';
|
|
|
|
const root = document.getElementById('root');
|
|
|
|
// eslint-disable-next-line no-console
|
|
console.log('Sticker Creator: Starting root');
|
|
render(<Root />, root);
|