Remove ";"

This commit is contained in:
Ivan R. 2023-10-01 13:10:52 +05:00
parent 780ccff4d5
commit ae7e7e7c0c
No known key found for this signature in database
GPG key ID: 56C7BAAE859B302C
3 changed files with 8 additions and 8 deletions

View file

@ -1,4 +1,4 @@
import { defineConfig } from 'astro/config';
import { defineConfig } from 'astro/config'
// https://astro.build/config
export default defineConfig({});
export default defineConfig({})

View file

@ -1,12 +1,12 @@
---
import Navbar from '../components/Navbar.astro';
import Footer from '../components/Footer.astro';
import Navbar from '../components/Navbar.astro'
import Footer from '../components/Footer.astro'
interface Props {
title: string;
title: string
}
const { title } = Astro.props;
const { title } = Astro.props
---
<!DOCTYPE html>

View file

@ -1,6 +1,6 @@
---
import Layout from '../layouts/Layout.astro';
import Note from '../components/Note.astro';
import Layout from '../layouts/Layout.astro'
import Note from '../components/Note.astro'
---
<Layout title="Уютный домик">