Skip to content

Instantly share code, notes, and snippets.

@roginfarrer
Created September 23, 2024 23:05
Show Gist options
  • Save roginfarrer/69de24f792550b4685e63ce1e53cdb8e to your computer and use it in GitHub Desktop.
Save roginfarrer/69de24f792550b4685e63ce1e53cdb8e to your computer and use it in GitHub Desktop.
Design system changelog

Collage Changelog

Sep 23, 2024

Made button purple – DT-1234 via #123456 by Eliott Ruthersford

Sep 22, 2024

Created new FormInput component – DT-1234 via #123456 by Eliott Ruthersford

Example:

import FormInput from 'collage';

const App = () => {
    const [value, setValue] = useState('')
    return (
        <FormInput value={value} onChange={e => setValue(e.target.value)} />
    )
}

Sep 21, 2024

Made button pink – DT-1234 via #123456 by Eliott Ruthersford

Sep 20, 2024

Made button red – DT-1234 via #123456 by Eliott Ruthersford

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment