Skip to content

romanschejbal/allmetas

Repository files navigation

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the schema fetch command:

yarn get-schema

Second, run the development server:

yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying src/pages/index.tsx. The page auto-updates as you edit the file.

Project Structure

src
├── components # here we keep dummy or reusable components
│   ├── Button
│   │   ├── index.tsx
│   └── Form # form components are not exactly "dummy" but they are reusable, we can put them in their respective folder
│       ├── CheckboxField.tsx
│       ├── RadioField.tsx
│       ├── SelectField.tsx
│       └── TextField.tsx
├── containers # here we have components that contain a certain behaviour or a concrete composition of "components"
│   └── signup-form # example
│       └── index.tsx
├── pages # pages / routes
│   ├── _app.tsx
│   ├── index.tsx
│   └── signup.tsx
└── styles
    └── globals.css # necessary global styling

Learn More

To learn more about Next.js, take a look at the following resources:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published