Skip to content

Commit 6fe6713

Browse files
committedNov 12, 2017
Working Proof of concept (only a simple button component).
0 parents  commit 6fe6713

File tree

21 files changed

+58794
-0
lines changed

21 files changed

+58794
-0
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.stack-work

‎.jshintrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"esversion":6
3+
}

‎LICENSE

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Copyright Anupam Jain (c) 2017
2+
3+
All rights reserved.
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
* Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
11+
* Redistributions in binary form must reproduce the above
12+
copyright notice, this list of conditions and the following
13+
disclaimer in the documentation and/or other materials provided
14+
with the distribution.
15+
16+
* Neither the name of Author name here nor the names of other
17+
contributors may be used to endorse or promote products derived
18+
from this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Concur-React-Semantic-UI
2+
3+
## Semantic-UI Lib integration with Concur-React

‎Setup.hs

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain

‎concur-react-semantic-ui.cabal

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
-- This file has been generated from package.yaml by hpack version 0.18.1.
2+
--
3+
-- see: https://github.com/sol/hpack
4+
5+
name: concur-react-semantic-ui
6+
version: 0.1.0.0
7+
description: Semantic UI Integration for Concur-React
8+
category: Web
9+
homepage: https://github.com/concurhaskell/concur-react-semantic-ui
10+
author: Anupam Jain
11+
maintainer: ajnsit@gmail.com
12+
copyright: 2017 Anupam Jain
13+
license: BSD3
14+
license-file: LICENSE
15+
build-type: Simple
16+
cabal-version: >= 1.10
17+
18+
extra-source-files:
19+
README.md
20+
21+
library
22+
hs-source-dirs:
23+
src
24+
ghc-options: -Wall -ferror-spans
25+
build-depends:
26+
base
27+
, stm >=2.4
28+
, concur-core
29+
, concur-react
30+
, mtl >=2.2
31+
, transformers >=0.5
32+
, free >=4.12
33+
, data-default >=0.7
34+
if impl(ghcjs -any)
35+
hs-source-dirs:
36+
src-ghcjs
37+
build-depends:
38+
ghcjs-base
39+
else
40+
hs-source-dirs:
41+
src-ghc
42+
build-depends:
43+
ghcjs-base-stub >=0.1
44+
exposed-modules:
45+
Concur.React.SemanticUI.Components
46+
Concur.React.SemanticUI.Components.Button
47+
Concur.React.SemanticUI.Components.Icon
48+
Concur.React.SemanticUI.FFI
49+
other-modules:
50+
Paths_concur_react_semantic_ui
51+
default-language: Haskell2010

‎js-src/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import * as react from 'react';
2+
import * as reactDom from 'react-dom';
3+
import * as semanticUiReact from 'semantic-ui-react';
4+
export { react, reactDom, semanticUiReact };

0 commit comments

Comments
 (0)