Cody Johnson
Cody Johnson
I haven't had any issues targeting .NET Core 3.1. Looking at my project dependencies I do see some differences:  In development I targeted a localdb mssql instance, and it...
@ericgla you should move that atom out of `App`, that *might* prevent the error, doing this fixes it for me when I use `fast-refresh`. Additionally, if you don't need that...
I have a fable library I'm working on that is pretty serviceable at the moment that may be of use: [Feliz.Plotly](https://github.com/Shmew/Feliz.Plotly)
Pretty much everything outside of `Plotly.plot` is just an object, would probably be pretty easy to implement. From what I can tell it looks like this is just creating an...
@cartermp Would let you also be able to support additional visualization libraries fairly easy too, and stay up-to-date with those already supported. I can try to help if you do...
``` module Example open FSharp.Data let test () = let uri = @"https://petstore.swagger.io/v2/pet/findByStatus?status=available" let heads = [ HttpRequestHeaders.ContentLanguage HttpContentTypes.Json HttpRequestHeaders.Accept @"*/*" HttpRequestHeaders.AcceptEncoding "UTF8" HttpRequestHeaders.ContentType HttpContentTypes.Json HttpRequestHeaders.ContentEncoding "UTF8" ] Http.Request(uri, httpMethod...
Thanks for this cmeeren, I've made plotly.js bindings for Feliz by butchering the code you wrote for the generator. https://github.com/Shmew/Feliz.Plotly I'd love some advice on how I can improve things,...
So I believe this would work: `tableContainer.component' (importDefault "@material-ui/core/Paper")`. The library could be adjusted to have something like this: ```fsharp type MuiTypes = static member inline paper : ReactElementType =...
Does that work for you for any component you define? I haven't personally tried it, I don't think that will work with any imported components (which is why we need...
Yeah the issue is `Mui.paper` won't work because it's expecting a list of properties, not the actual object. I was asking if you had a component like `React.functionComponent(fun props ->...