mirror of https://github.com/fantasticit/think.git
Merge pull request #96 from TinsFox/main
fix: contain a matching <a> in <span>
This commit is contained in:
commit
7a55602275
|
@ -67,16 +67,16 @@ const Page = () => {
|
||||||
登录
|
登录
|
||||||
</Button>
|
</Button>
|
||||||
<footer>
|
<footer>
|
||||||
<Text link style={{ textAlign: 'center' }}>
|
|
||||||
<Link
|
<Link
|
||||||
href={{
|
href={{
|
||||||
pathname: '/register',
|
pathname: '/register',
|
||||||
query,
|
query,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<a>注册用户以登录</a>
|
<Text link style={{ textAlign: 'center' }}>
|
||||||
</Link>
|
注册用户以登录
|
||||||
</Text>
|
</Text>
|
||||||
|
</Link>
|
||||||
</footer>
|
</footer>
|
||||||
</Form>
|
</Form>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
|
@ -76,16 +76,16 @@ const Page = () => {
|
||||||
注册
|
注册
|
||||||
</Button>
|
</Button>
|
||||||
<footer>
|
<footer>
|
||||||
<Text link style={{ textAlign: 'center' }}>
|
|
||||||
<Link
|
<Link
|
||||||
href={{
|
href={{
|
||||||
pathname: '/login',
|
pathname: '/login',
|
||||||
query,
|
query,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<a>使用其他账户登录</a>
|
<Text link style={{ textAlign: 'center' }}>
|
||||||
</Link>
|
使用其他账户登录
|
||||||
</Text>
|
</Text>
|
||||||
|
</Link>
|
||||||
</footer>
|
</footer>
|
||||||
</Form>
|
</Form>
|
||||||
</Content>
|
</Content>
|
||||||
|
|
Loading…
Reference in New Issue