Rename gram.ts to index.ts.

This commit is contained in:
Bauke 2022-09-29 12:39:55 +02:00
parent 62e8a6cb4d
commit 7c38f3c882
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
4 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import test from 'ava';
import {html} from 'htm/preact';
import {render} from 'preact';
import {ConfirmButton, ConfirmButtonProps} from '../../source/gram.js';
import {ConfirmButton, ConfirmButtonProps} from '../../source/index.js';
import {sleep} from '../utilities.js';
test.before(() => {

View File

@ -3,7 +3,7 @@ import test from 'ava';
import {html} from 'htm/preact';
import {render} from 'preact';
import {FeedbackButton, FeedbackButtonProps} from '../../source/gram.js';
import {FeedbackButton, FeedbackButtonProps} from '../../source/index.js';
import {sleep} from '../utilities.js';
test.before(() => {

View File

@ -2,7 +2,7 @@ import test from 'ava';
import {html} from 'htm/preact';
import {render} from 'preact-render-to-string';
import {PrivacyLink} from '../../source/gram.js';
import {PrivacyLink} from '../../source/index.js';
test('PrivacyLink', (t) => {
t.snapshot(render(html`<${PrivacyLink} />`), 'Empty');