blob: 9d344775532e20f85672d9b396e636f0ba062a48 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {sendWithPromise} from 'chrome://resources/js/cr.m.js';
import {$} from 'chrome://resources/js/util.m.js';
document.addEventListener('DOMContentLoaded', function() {
sendWithPromise('fetchClientId').then((clientId: string) => {
$('content').textContent = clientId;
});
});