Getting Started
Project Basics
Project structure
The project structure of Morph is as follows.
You can add a new page by creating an .mdx
file in the pages
directory.
Basic syntax of page files
Page files are written in the following format.
index.mdx
Title
A string declared in the form export const title = 'title';
is used as the page title. It is used for display on the menu.
Markdown
Page files can be written in Markdown format. You can describe the information necessary for operating the data application and convey it to users in an easy-to-understand manner.
Components
<Grid>
and <DataTable>
are components provided by the Morph framework. Using these components, you can easily add the functionality you need to your data app.
MDX
Use MDX (https://mdxjs.com/) when building data applications in Morph; for more information on how to use MDX, see MDX detail.