├── src
├── variables.env
├── setupTests.js
├── App.test.js
├── components
│ ├── PageNotFound.js
│ ├── Alert.js
│ ├── Page.js
│ ├── Navbar.js
│ ├── PreviewSection.js
│ ├── SignUp.js
│ ├── RolesManagement.js
│ ├── Editor.js
│ └── Wiki.js
├── index.css
├── App.js
├── graphql
│ ├── schema.js
│ └── resolvers.js
├── logo.svg
├── index.js
├── styles
│ ├── PreviewSection.scss
│ ├── helpers.scss
│ ├── Editor.scss
│ └── App.scss
└── serviceWorker.js
├── public
├── robots.txt
├── favicon.ico
├── logo192.png
├── logo512.png
├── LogoH-wik-8.png
├── manifest.json
└── index.html
├── .gitignore
├── README.md
└── package.json
/src/variables.env:
--------------------------------------------------------------------------------
1 | PRODUCTION="YES"
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyss/h-wiki-front/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyss/h-wiki-front/HEAD/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyss/h-wiki-front/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/public/LogoH-wik-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/eyss/h-wiki-front/HEAD/public/LogoH-wik-8.png
--------------------------------------------------------------------------------
/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom/extend-expect';
6 |
--------------------------------------------------------------------------------
/src/App.test.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { render } from '@testing-library/react';
3 | import App from './App';
4 |
5 | test('renders learn react link', () => {
6 | const { getByText } = render(