📅  最后修改于: 2023-12-03 15:38:15.790000             🧑  作者: Mango
如果你正在使用 Gatsby 来构建你的网站或应用程序,你可能需要在代码中创建新文件。本文将为您介绍如何在 Gatsby 中创建新文件的方法。
要在 Gatsby 项目中创建新文件,请遵循以下步骤:
src/new-files/
import React from "react"
const MyComponent = () => {
return <h1>Hello World!</h1>
}
export default MyComponent
# 这是一个标题
这是一个段落。
一旦你创建了新文件,你可以在 Gatsby 项目中使用它们。要使用新文件,请遵循以下步骤:
import MyComponent from "./new-files/MyComponent"
import MyMarkdown from "./new-files/MyMarkdown.md"
const MyPage = () => {
return (
<div>
<MyComponent />
<MyMarkdown />
</div>
)
}
在 Gatsby 项目中创建新文件非常简单。你只需创建一个新文件夹并添加你的文件即可。一旦你创建了新文件,你可以在代码中导入和使用它们。希望这篇文章能帮助你顺利创建并使用新文件。