diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-08 23:58:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 23:58:16 +0800 |
commit | 40ca846cdc44efa98ab9db11c16cff301020f11f (patch) | |
tree | 2fdaee2607881c657d2ccf71ddc6d407ed522aca /packages/react-docs/example/public/index.html | |
parent | 03902b0b26fe443705dde20c42e78e1cb4bd3c4b (diff) | |
parent | 2a24f6e2ea9bc4f879c9dff2a60c92dec0e1cc48 (diff) | |
download | dexon-0x-contracts-40ca846cdc44efa98ab9db11c16cff301020f11f.tar dexon-0x-contracts-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.gz dexon-0x-contracts-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.bz2 dexon-0x-contracts-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.lz dexon-0x-contracts-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.xz dexon-0x-contracts-40ca846cdc44efa98ab9db11c16cff301020f11f.tar.zst dexon-0x-contracts-40ca846cdc44efa98ab9db11c16cff301020f11f.zip |
Merge pull request #438 from 0xProject/extractDocs
Extract Docs Template To Separate Package
Diffstat (limited to 'packages/react-docs/example/public/index.html')
-rw-r--r-- | packages/react-docs/example/public/index.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/react-docs/example/public/index.html b/packages/react-docs/example/public/index.html new file mode 100644 index 000000000..fcc1c6e0c --- /dev/null +++ b/packages/react-docs/example/public/index.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> + +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>Example Docs Page</title> + <link rel="stylesheet" href="/css/github-gist.css"> + <link rel="stylesheet" href="/css/basscss_responsive_custom.css"> + <link rel="stylesheet" href="/css/basscss_responsive_padding.css"> + <link rel="stylesheet" href="/css/basscss_responsive_margin.css"> + <link rel="stylesheet" href="/css/basscss_responsive_type_scale.css"> + <link rel="stylesheet" href="/css/material-design-iconic-font.min.css"> + <link rel="stylesheet" href="/css/roboto.css"> + <link rel="stylesheet" href="/css/roboto_mono.css"> +</head> + +<body style="margin: 0px; min-width: 355px; font-family: 'Roboto';"> + <!-- Main --> + <div id="app"></div> + <script type="text/javascript" crossorigin="anonymous" src="/bundle.js" charset="utf-8"></script> +</body> + +</html> |