Remove ";"
This commit is contained in:
parent
780ccff4d5
commit
ae7e7e7c0c
3 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
||||||
import { defineConfig } from 'astro/config';
|
import { defineConfig } from 'astro/config'
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({});
|
export default defineConfig({})
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
---
|
---
|
||||||
import Navbar from '../components/Navbar.astro';
|
import Navbar from '../components/Navbar.astro'
|
||||||
import Footer from '../components/Footer.astro';
|
import Footer from '../components/Footer.astro'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
title: string;
|
title: string
|
||||||
}
|
}
|
||||||
|
|
||||||
const { title } = Astro.props;
|
const { title } = Astro.props
|
||||||
---
|
---
|
||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
import Layout from '../layouts/Layout.astro';
|
import Layout from '../layouts/Layout.astro'
|
||||||
import Note from '../components/Note.astro';
|
import Note from '../components/Note.astro'
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Уютный домик">
|
<Layout title="Уютный домик">
|
||||||
|
|
Loading…
Reference in a new issue