Created
July 15, 2019 08:59
-
-
Save SirmaXX/a468a5c277ec5e61f411c35217fdedbe to your computer and use it in GitHub Desktop.
Elm for beginner /Acemiler için elm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Browser | |
import Html | |
import Html exposing (..) | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (..) | |
-- MAIN | |
main: Html msg | |
main = | |
div[] | |
[ | |
table[ ][ | |
tr[] [ | |
td[][text "asdasd"] | |
, td[][text "asdasd"] | |
, td[][text "asdasd"] | |
] | |
, tr[] [ | |
td[][text "asdasd"] | |
, td[][text "asdasd"] | |
, td[][text "asdasd"] | |
] | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment