index.ts 373 B

123456789101112131415161718
  1. import {
  2. JupyterLabPlugin
  3. } from '@jupyterlab/application';
  4. import '../style/index.css';
  5. /**
  6. * Initialization data for the {{ cookiecutter.extension_name }} extension.
  7. */
  8. const extension: JupyterLabPlugin<void> = {
  9. id: 'jupyter.themes.light',
  10. autoStart: true,
  11. activate: (app) => {
  12. console.log('Light theme is activated!');
  13. }
  14. };
  15. export default extension;