This file contains hidden or 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
| const { | |
| session, | |
| Scenes: { Stage, WizardScene }, | |
| Markup, | |
| } = require("telegraf"); | |
| const questionWizard = new WizardScene( | |
| "create-question", | |
| async (ctx) => { | |
| await ctx.reply(`What's the subject?`); |
This file contains hidden or 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
| <nav class="border-gray-200 dark:bg-gray-900"> | |
| <div class="max-w-screen-xl flex flex-wrap items-center justify-between mx-auto p-4"> | |
| <a href="#" class="flex items-center space-x-3 rtl:space-x-reverse"> | |
| <img src="images/robomask.png" class="h-8" alt="Flowbite Logo"/> | |
| <span class="self-center text-2xl font-semibold whitespace-nowrap dark:text-white">App name</span> | |
| </a> | |
| <button data-collapse-toggle="navbar-default" type="button" class="inline-flex items-center p-2 w-10 h-10 justify-center text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-default" aria-expanded="false"> | |
| <span class="sr-only">Open main menu</span> | |
OlderNewer