From 7f6fc9fb09783a4142fc57a0cfed49daf242628c Mon Sep 17 00:00:00 2001 From: Manuel Ernst Date: Thu, 3 Dec 2020 17:25:17 +0100 Subject: [PATCH] fixes comment in supported file documentation --- www/_template/reference/supported-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/_template/reference/supported-files.md b/www/_template/reference/supported-files.md index 8601585249..2454c0bfc9 100644 --- a/www/_template/reference/supported-files.md +++ b/www/_template/reference/supported-files.md @@ -87,7 +87,7 @@ CSS Modules help you enforce component scoping & isolation on the frontend with ```jsx import imgReference from './image.png'; // img === '/src/image.png' import svgReference from './image.svg'; // svg === '/src/image.svg' -import txtReference from './words.txt'; // txt === '/src/image.png' +import txtReference from './words.txt'; // txt === '/src/words.txt' // This example uses JSX, but you can use import references with any framework. ;