├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── package.json └── src ├── components ├── Footer.jsx ├── Header.jsx └── Logo.jsx ├── index.js ├── layouts ├── HeaderAsideFooterLayout │ ├── Layout.jsx │ ├── index.js │ └── scss │ │ ├── base.scss │ │ ├── dark.scss │ │ └── light.scss └── HeaderAsideFooterResponsiveLayout │ ├── Layout.jsx │ ├── index.js │ └── scss │ ├── base.scss │ ├── dark.scss │ └── light.scss ├── menuConfig.js ├── pages ├── Activities │ ├── Activities.jsx │ ├── Activities.scss │ ├── components │ │ └── ComplexProgressTable │ │ │ ├── ComplexProgressTable.jsx │ │ │ ├── CreateFuncDialog.jsx │ │ │ ├── EditDialog.jsx │ │ │ └── index.js │ └── index.js ├── Home │ ├── Home.jsx │ └── index.js ├── Launch │ ├── Launch.jsx │ ├── Launch.scss │ ├── components │ │ └── CreateActivityForm │ │ │ ├── CreateActivityForm.jsx │ │ │ └── index.js │ └── index.js ├── NotFound │ ├── NotFound.jsx │ ├── components │ │ └── BasicNotFound │ │ │ ├── BasicNotFound.jsx │ │ │ ├── BasicNotFound.scss │ │ │ └── index.js │ └── index.js └── See │ ├── See.jsx │ ├── See.scss │ ├── components │ └── TimeFilterTable │ │ ├── TimeFilterTable.jsx │ │ └── index.js │ └── index.js ├── router.jsx └── routerConfig.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/components/Logo.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/index.js -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterLayout/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterLayout/Layout.jsx -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterLayout/index.js -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterLayout/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterLayout/scss/base.scss -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterLayout/scss/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterLayout/scss/dark.scss -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterLayout/scss/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterLayout/scss/light.scss -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterResponsiveLayout/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterResponsiveLayout/Layout.jsx -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterResponsiveLayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterResponsiveLayout/index.js -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterResponsiveLayout/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterResponsiveLayout/scss/base.scss -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterResponsiveLayout/scss/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterResponsiveLayout/scss/dark.scss -------------------------------------------------------------------------------- /src/layouts/HeaderAsideFooterResponsiveLayout/scss/light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/layouts/HeaderAsideFooterResponsiveLayout/scss/light.scss -------------------------------------------------------------------------------- /src/menuConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/menuConfig.js -------------------------------------------------------------------------------- /src/pages/Activities/Activities.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Activities/Activities.jsx -------------------------------------------------------------------------------- /src/pages/Activities/Activities.scss: -------------------------------------------------------------------------------- 1 | .activities-page { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/Activities/components/ComplexProgressTable/ComplexProgressTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Activities/components/ComplexProgressTable/ComplexProgressTable.jsx -------------------------------------------------------------------------------- /src/pages/Activities/components/ComplexProgressTable/CreateFuncDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Activities/components/ComplexProgressTable/CreateFuncDialog.jsx -------------------------------------------------------------------------------- /src/pages/Activities/components/ComplexProgressTable/EditDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Activities/components/ComplexProgressTable/EditDialog.jsx -------------------------------------------------------------------------------- /src/pages/Activities/components/ComplexProgressTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Activities/components/ComplexProgressTable/index.js -------------------------------------------------------------------------------- /src/pages/Activities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Activities/index.js -------------------------------------------------------------------------------- /src/pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Home/Home.jsx -------------------------------------------------------------------------------- /src/pages/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Home/index.js -------------------------------------------------------------------------------- /src/pages/Launch/Launch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Launch/Launch.jsx -------------------------------------------------------------------------------- /src/pages/Launch/Launch.scss: -------------------------------------------------------------------------------- 1 | .launch-page { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/Launch/components/CreateActivityForm/CreateActivityForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Launch/components/CreateActivityForm/CreateActivityForm.jsx -------------------------------------------------------------------------------- /src/pages/Launch/components/CreateActivityForm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Launch/components/CreateActivityForm/index.js -------------------------------------------------------------------------------- /src/pages/Launch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/Launch/index.js -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/NotFound/NotFound.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/components/BasicNotFound/BasicNotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/NotFound/components/BasicNotFound/BasicNotFound.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/components/BasicNotFound/BasicNotFound.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/NotFound/components/BasicNotFound/BasicNotFound.scss -------------------------------------------------------------------------------- /src/pages/NotFound/components/BasicNotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/NotFound/components/BasicNotFound/index.js -------------------------------------------------------------------------------- /src/pages/NotFound/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/NotFound/index.js -------------------------------------------------------------------------------- /src/pages/See/See.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/See/See.jsx -------------------------------------------------------------------------------- /src/pages/See/See.scss: -------------------------------------------------------------------------------- 1 | .see-page { 2 | } 3 | -------------------------------------------------------------------------------- /src/pages/See/components/TimeFilterTable/TimeFilterTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/See/components/TimeFilterTable/TimeFilterTable.jsx -------------------------------------------------------------------------------- /src/pages/See/components/TimeFilterTable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/See/components/TimeFilterTable/index.js -------------------------------------------------------------------------------- /src/pages/See/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/pages/See/index.js -------------------------------------------------------------------------------- /src/router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/router.jsx -------------------------------------------------------------------------------- /src/routerConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceSeaOnly/CrowdFunding/HEAD/src/routerConfig.js --------------------------------------------------------------------------------