Skip to content
View k290's full-sized avatar

Block or report k290

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. CleanStarterProject CleanStarterProject Public

    TypeScript

  2. JSCalendar.NET JSCalendar.NET Public

    A .fluent NET implementaiton of the JSCalendar Spec

    C#

  3. designpatternsfork_Philip-Japikse designpatternsfork_Philip-Japikse Public

    C# 1

  4. React Typescript Snippets / React C... React Typescript Snippets / React Context Provider
    1
    const App: React.FC = () => {
    2
    	const modules: AppModule[] = [
    3
    		dashboardModule,
    4
    		hazardControlsModule,
    5
    		controlAnalysisModules,
  5. React Typescript Snippets / Function... React Typescript Snippets / Functional HOC
    1
    import React, { useContext } from "react";
    2
    import { ComponentType } from "react"
    3
    import { createTheme, ThemeProvider, withTheme, Theme } from '@material-ui/core/styles';
    4
    import { SettingsContext } from "../../../../SettingsProvider";
    5
    import { enUS, ptBR } from '@material-ui/core/locale';