Skip to content
View passosleo's full-sized avatar
💻
Coding
💻
Coding

Highlights

  • Pro

Block or report passosleo

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
passosleo/README.md

Hi there 👋

Pinned Loading

  1. blog-engsoft blog-engsoft Public

    Microservices-based blog application to Software Engineering I discipline

    TypeScript 1

  2. keep-my-notes keep-my-notes Public

    A simple sticky notes application developed with React + Styled Components with browser data persistence

    TypeScript 1

  3. spend-together-api spend-together-api Public

    This is an API designed to easily split bills among users implemented with Clean Architecture principles

    TypeScript

  4. faccat-it-website faccat-it-website Public

    Forked from rayanemelo/site-ti-faccat

    FACCAT IT Course website developed during discipline of Web Authoring and Design from Figma prototype to implementation

    HTML

  5. mail-master mail-master Public

    Mail template API made to handle, store, identify and provide HTML mail templates

    TypeScript 1

  6. useLocalStorage.ts useLocalStorage.ts
    1
    export function useLocalStorage() {
    2
      function storeData<T>(key: string, data: T) {
    3
        try {
    4
          if (typeof window !== 'undefined') {
    5
            localStorage.setItem(key, JSON.stringify(data));