@@ -30,7 +30,7 @@ import type {
3030 TemplateEngineSyntax ,
3131} from "@/hooks/use-explorer" ;
3232
33- const JSONPanel : React . FC = ( ) => {
33+ const JSONPanel : FC = ( ) => {
3434 const explorer = useExplorer ( ) ;
3535 const { jsonOptions, setJsonOptions } = explorer ;
3636 const { jsonMode, allowTrailingCommas } = jsonOptions ;
@@ -69,7 +69,7 @@ const JSONPanel: React.FC = () => {
6969 ) ;
7070} ;
7171
72- const MarkdownPanel : React . FC = ( ) => {
72+ const MarkdownPanel : FC = ( ) => {
7373 const explorer = useExplorer ( ) ;
7474 const { markdownOptions, setMarkdownOptions } = explorer ;
7575 const { markdownMode, markdownFrontmatter } = markdownOptions ;
@@ -105,7 +105,7 @@ const MarkdownPanel: React.FC = () => {
105105 ) ;
106106} ;
107107
108- const CssPanel : React . FC = ( ) => {
108+ const CssPanel : FC = ( ) => {
109109 const explorer = useExplorer ( ) ;
110110 const { cssOptions, setCssOptions } = explorer ;
111111 const { tolerant } = cssOptions ;
@@ -123,7 +123,7 @@ const CssPanel: React.FC = () => {
123123 ) ;
124124} ;
125125
126- const JavaScriptPanel : React . FC = ( ) => {
126+ const JavaScriptPanel : FC = ( ) => {
127127 const explorer = useExplorer ( ) ;
128128 const { jsOptions, setJsOptions } = explorer ;
129129 const { parser, sourceType, esVersion, isJSX } = jsOptions ;
@@ -180,7 +180,7 @@ const JavaScriptPanel: React.FC = () => {
180180 ) ;
181181} ;
182182
183- const HTMLPanel : React . FC = ( ) => {
183+ const HTMLPanel : FC = ( ) => {
184184 const explorer = useExplorer ( ) ;
185185 const { htmlOptions, setHtmlOptions } = explorer ;
186186 const { templateEngineSyntax, frontmatter } = htmlOptions ;
0 commit comments