diff --git a/README.md b/README.md index ad4ab88..ee32a1e 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,11 @@ ## Built with -- [create-react-app](https://reactjs.org/docs/create-a-new-react-app.html) -- [monaco-react](https://github.com/suren-atoyan/monaco-react) -- [fluentui-react](https://github.com/microsoft/fluentui) -- [dirty-json](https://github.com/RyanMarcus/dirty-json) +- [monaco-react](https://github.com/suren-atoyan/monaco-react) - Monaco Editor for React +- [fluent ui](https://github.com/microsoft/fluentui) - A react component library developed by Microsoft +- [dirty-json](https://github.com/RyanMarcus/dirty-json) - A JSON parser that tries to handle non-conforming or otherwise invalid JSON +- [Ajv](https://github.com/ajv-validator/ajv) - A fastest JSON validator for Node.js and browser +- [vite](https://vitejs.dev) and [vercel](https://vercel.com) ## Demo diff --git a/src/App.tsx b/src/App.tsx index 60e35f0..b0670b1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,7 +9,7 @@ import { SampleData } from "./components/json-editor/utils/__mocks__/mock-data"; import { useToggle } from "./hooks"; enum Editor { - Schema = "Schema", + Schema = "JSON Schema", InputJson = "Input JSON", }