elixir_svelte_render icon indicating copy to clipboard operation
elixir_svelte_render copied to clipboard

Results 1 elixir_svelte_render issues
Sort by recently updated
recently updated
newest added

Simple example: ```svelte import Button from "svelma/src/components/Button.svelte"; alert('Clicked!')}>Just a Button ``` This results in: ![image](https://user-images.githubusercontent.com/606028/80917394-e2d0d300-8d5e-11ea-80e4-6dce3f29a7f5.png) Controller code: ```elixir def index(conn, _params) do component_path = "#{File.cwd!()}/assets/js/components/Button.svelte" {:safe, helloWorld} = SvelteRender.render(component_path, props)...