From 968baca8550a65660135d3308c9ed42d9236f86c Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+KaizIqbal@users.noreply.github.com> Date: Sat, 15 Aug 2020 17:28:50 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20test=20render?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/round/src/index.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/round/src/index.ts b/packages/round/src/index.ts index b684f75a..b3661674 100644 --- a/packages/round/src/index.ts +++ b/packages/round/src/index.ts @@ -1,4 +1,10 @@ -import { renderConfig } from "./config"; +import { config } from "./config"; + +// from shared package +import { renderCursors } from "shared"; console.log("Bibata Round"); -console.log(renderConfig); + +(async () => { + renderCursors(config); +})();