Add FuretUI in your own project

FuretUI don’t give a final web client, You have to create the html page. In this page you must:

    1. create page: (css, html, js)
    1. load furetui components
    1. load your own components
    1. create the FuretUI Client

Example:

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
        <title>Your title</title>
        <!--
            Your css files
        -->
    </head>
    <body>
        <!-- the entry point of the client -->
        <div id="anyblok-furetui-app"></div>
        <!--
            Your js files
        -->
        <!--
            Furet UI bundles
        -->
        <!--
            Your components for FuretUI
        -->
        <!-- creation of the client -->
        <script type="text/javascript">
            createFuretUIClient('#anyblok-furetui-app');
        </script>
    </body>
</html>